/* =====================================================================
   Seven Generations Innovation — shared design system (v4 language)
   Used by all inner pages. Light/dark theme supported (blog pages).
   Fonts: Fraunces (serif display) + Inter (sans).
   ===================================================================== */

:root {
  --navy: #1f3344;
  --navy-deep: #15222d;
  --green: #2f7d3a;
  --green-deep: #245f2c;
  --sky: #7bb7d9;
  --cream: #f5efe2;
  --cream-soft: #faf6ec;
  --ink: #1a232c;
  --ink-soft: #4a5764;
  --rule: #e6dfcf;
  --white: #ffffff;

  /* Semantic surface tokens (overridden in dark theme) */
  --bg: #ffffff;
  --bg-alt: #faf6ec;
  --surface: #ffffff;
  --text: #1a232c;
  --text-soft: #4a5764;
  --text-faint: #7c8693;
  --border: #e6dfcf;
  --heading: #1a232c;
  --hdr-bg: #ffffff;
  --hdr-border: #e6dfcf;
  --hdr-text: #4a5764;
  --hdr-brand: #1f3344;
}

/* ---- Dark theme (blog pages) ---- */
[data-theme="dark"] {
  --bg: #131c24;
  --bg-alt: #18242e;
  --surface: #1b2832;
  --text: #e7ecf0;
  --text-soft: #aab6c0;
  --text-faint: #7d8a95;
  --border: #2c3b46;
  --heading: #f4f7f9;
  --cream: #1b2832;
  --cream-soft: #18242e;
  --rule: #2c3b46;
  --hdr-bg: #131c24;
  --hdr-border: #2c3b46;
  --hdr-text: #aab6c0;
  --hdr-brand: #f4f7f9;
  --navy: #0f1820;
  --sky: #8fc4e4;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--heading);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: all .18s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
[data-theme="dark"] .btn-ghost { color: var(--text); border-color: var(--border); }
[data-theme="dark"] .btn-ghost:hover { background: var(--text); color: var(--bg); }

/* ---------- Header (solid, fixed) ---------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--hdr-bg);
  border-bottom: 1px solid var(--hdr-border);
  box-shadow: 0 4px 18px -16px rgba(31,51,68,0.35);
  transition: background .3s ease, border-color .3s ease;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand img { width: 80px; height: 80px; object-fit: contain; }
.brand .lockup {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 18px; letter-spacing: 0.04em; color: var(--hdr-brand); line-height: 1;
}
.brand .lockup span {
  display: block; font-size: 11px; letter-spacing: 0.22em;
  color: var(--text-faint); margin-top: 4px; font-weight: 500;
}
nav.primary { display: flex; gap: 30px; }
nav.primary a {
  font-size: 14px; font-weight: 500; color: var(--hdr-text);
  transition: color .15s; white-space: nowrap;
}
nav.primary a:hover, nav.primary a.active { color: var(--hdr-brand); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center; color: var(--hdr-text);
  border: 1px solid transparent; background: transparent; cursor: pointer;
  transition: color .15s, background .15s, border-color .15s;
}
.icon-btn:hover { background: var(--cream); color: var(--hdr-brand); }
[data-theme="dark"] .icon-btn:hover { background: var(--surface); }

/* spacer so fixed header doesn't cover content */
.hdr-spacer { height: 104px; }

/* ---------- Page banner (inner page hero) ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero.cream { background: var(--bg-alt); color: var(--text); }
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 22px; color: var(--sky);
}
.page-hero.cream .eyebrow { color: var(--green); }
.page-hero .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px); font-weight: 400; color: #fff;
  max-width: 880px; line-height: 1.06;
}
.page-hero.cream h1 { color: var(--heading); }
.page-hero h1 em { font-style: italic; color: var(--sky); }
.page-hero p.lede {
  font-size: 19px; margin: 22px 0 0; max-width: 640px;
  color: rgba(255,255,255,0.85);
}
.page-hero.cream p.lede { color: var(--text-soft); }

/* ---------- Generic section ---------- */
section.block { padding: 80px 0; }
.section-head { margin-bottom: 44px; }
.section-head .kicker {
  display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 500; color: var(--heading); }
.section-head p { color: var(--text-soft); margin: 12px 0 0; max-width: 640px; }

/* ---------- Filter tabs ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filters button {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent; color: var(--text-soft);
  cursor: pointer; transition: all .15s;
}
.filters button:hover { border-color: var(--navy); color: var(--heading); }
.filters button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Work archive grid (Written Work) ---------- */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.work-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.work-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(31,51,68,0.3); }
.work-card .masthead-strip {
  background: var(--navy); color: #fff; padding: 16px 22px 13px; text-align: center;
}
.work-card .masthead-strip .pub {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: 17px; color: #fff; line-height: 1.1;
}
.work-card .masthead-strip .kind {
  display: block; font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--sky); font-weight: 600; margin-top: 6px;
}
.work-card .masthead-strip.unpublished { background: var(--green-deep); }
.work-card .masthead-strip.unpublished .kind { color: #cfeccf; }
.work-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.work-card h3 { font-size: 21px; font-weight: 500; line-height: 1.25; margin: 0 0 12px; color: var(--heading); }
.work-card p { color: var(--text-soft); font-size: 14.5px; margin: 0 0 18px; flex: 1; }
.work-card .meta {
  font-size: 12px; letter-spacing: 0.04em; color: var(--text-faint);
  font-family: 'Fraunces', serif; font-style: italic;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.work-card .meta .more { float: right; font-style: normal; font-family: 'Inter',sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); }

/* ---------- Blog article ---------- */
.article { padding: 56px 0 40px; }
.article-head { max-width: 820px; margin: 0 auto 40px; padding: 0 28px; }
.article-head .crumb {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 20px; display: inline-block;
}
.article-head .pubrow {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600; margin-bottom: 20px;
}
.article-head .pubrow .badge {
  padding: 4px 11px; border-radius: 999px; font-size: 10.5px;
  background: var(--green); color: #fff; letter-spacing: 0.12em;
}
.article-head .pubrow .badge.unpublished { background: transparent; color: var(--green); border: 1px solid var(--green); }
.article-head h1 {
  font-size: clamp(32px, 4.4vw, 52px); font-weight: 500; line-height: 1.08;
  color: var(--heading); margin-bottom: 22px;
}
.article-head .dek {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 22px;
  line-height: 1.4; color: var(--text-soft);
}
.article-head .byline {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.article-head .byline .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--green-deep));
  display: grid; place-items: center; color: #fff;
  font-family: 'Fraunces', serif; font-size: 18px;
}
.article-head .byline .who { font-size: 14px; color: var(--text); font-weight: 600; }
.article-head .byline .who span { display: block; font-weight: 400; color: var(--text-faint); font-size: 12.5px; margin-top: 2px; }

.article-figure { max-width: 1040px; margin: 0 auto 44px; padding: 0 28px; }
.article-figure .ph {
  aspect-ratio: 16/8; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-deep) 100%);
  position: relative; display: grid; place-items: center;
}
.article-figure .ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(123,183,217,0.25), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(47,125,58,0.25), transparent 55%);
}
.article-figure .ph span {
  position: relative; z-index: 1; color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.article-figure img { width: 100%; height: 100%; object-fit: cover; }
.article-figure figcaption {
  font-size: 13px; color: var(--text-faint); margin-top: 12px; font-style: italic;
  font-family: 'Fraunces', serif;
}

.prose { max-width: 720px; margin: 0 auto; padding: 0 28px; }
.prose p { font-size: 18.5px; line-height: 1.75; color: var(--text); margin: 0 0 26px; }
.prose p:first-of-type::first-letter {
  font-family: 'Fraunces', serif; font-size: 66px; line-height: 0.8; font-weight: 600;
  float: left; margin: 8px 12px 0 0; color: var(--green);
}
.prose h2 { font-size: 28px; margin: 44px 0 18px; color: var(--heading); }
.prose blockquote {
  margin: 36px 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--green);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 24px; line-height: 1.4;
  color: var(--heading);
}
.prose .endmark { color: var(--green); font-weight: 700; }

.article-foot {
  max-width: 720px; margin: 48px auto 0; padding: 28px 28px 0;
  border-top: 1px solid var(--border);
}
.article-foot .author-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 22px 24px;
}
.article-foot .author-card .avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--green-deep));
  display: grid; place-items: center; color: #fff; font-family: 'Fraunces', serif; font-size: 20px;
}
.article-foot .author-card h4 { font-size: 17px; margin: 0 0 6px; color: var(--heading); }
.article-foot .author-card p { font-size: 14px; color: var(--text-soft); margin: 0; line-height: 1.6; }

/* theme toggle */
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }

/* ---------- Music page ---------- */
.track {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--border);
}
.track:last-child { border-bottom: 0; }
.track .play-btn {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green); border: 0;
  display: grid; place-items: center; cursor: pointer; transition: transform .15s, background .15s;
}
.track .play-btn:hover { background: var(--green-deep); transform: scale(1.05); }
.track .play-btn svg { margin-left: 4px; }
.track .t-num { font-family: 'Fraunces', serif; font-size: 18px; color: var(--text-faint); }
.track h3 { font-size: 26px; font-weight: 500; margin: 0 0 4px; color: var(--heading); }
.track .t-sub { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.track p { color: var(--text-soft); font-size: 15.5px; margin: 0 0 14px; max-width: 620px; line-height: 1.65; }
.track .wave { display: flex; align-items: end; gap: 3px; height: 44px; max-width: 460px; }
.track .wave i { flex: 1; background: linear-gradient(180deg, var(--sky), var(--green)); border-radius: 1.5px; opacity: 0.8; }
.track .t-len { font-family: 'Fraunces', serif; font-size: 15px; color: var(--text-faint); white-space: nowrap; }

/* ---------- Events grid ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.event-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(31,51,68,0.3); }
.event-card .media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); position: relative; }
.event-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.event-card:hover .media img { transform: scale(1.04); }
.event-card .media .datechip {
  position: absolute; top: 14px; left: 14px; background: var(--white); border-radius: 6px;
  padding: 8px 12px; text-align: center; box-shadow: 0 6px 18px -8px rgba(0,0,0,0.4);
}
.event-card .media .datechip .d { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1; }
.event-card .media .datechip .m { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: 3px; }
.event-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.event-card .tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.event-card .tag.past { color: var(--text-faint); }
.event-card h3 { font-size: 21px; font-weight: 500; line-height: 1.25; margin: 0 0 10px; color: var(--heading); }
.event-card p { color: var(--text-soft); font-size: 14.5px; margin: 0 0 16px; flex: 1; }
.event-card .where { font-size: 12.5px; color: var(--text-faint); font-family: 'Fraunces', serif; font-style: italic; border-top: 1px solid var(--border); padding-top: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px;
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--heading);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .toggle {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0; transition: all .2s; color: var(--heading);
}
.faq-list details[open] .toggle { background: var(--green); color: #fff; border-color: var(--green); transform: rotate(45deg); }
.faq-list details > div { padding-top: 14px; color: var(--text-soft); max-width: 680px; }

/* ---------- Subscribe page ---------- */
.sub-wrap { max-width: 620px; margin: 0 auto; text-align: center; }
.sub-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 48px 44px; box-shadow: 0 30px 60px -40px rgba(31,51,68,0.4);
}
.sub-card form { display: flex; gap: 10px; margin: 28px 0 16px; }
.sub-card input {
  flex: 1; border: 1px solid var(--border); background: var(--bg); border-radius: 999px;
  padding: 14px 20px; font-family: inherit; font-size: 15px; color: var(--text);
}
.sub-card input:focus { outline: none; border-color: var(--green); }
.sub-card .perks { display: grid; gap: 14px; margin-top: 36px; text-align: left; }
.sub-card .perk { display: flex; gap: 14px; align-items: flex-start; }
.sub-card .perk svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.sub-card .perk b { color: var(--heading); font-family: 'Inter', sans-serif; }
.sub-card .perk span { color: var(--text-soft); font-size: 14.5px; }

/* ---------- Footer ---------- */
footer.site { background: #0f1a23; color: rgba(255,255,255,0.65); padding: 72px 0 32px; font-size: 14px; }
footer.site .ftop { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
footer.site .brand-block { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
footer.site .brand-block .footer-logo { width: 176px; height: 176px; object-fit: contain; }
footer.site .socials { display: flex; gap: 14px; }
footer.site .socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: all .15s; }
footer.site .socials a:hover { border-color: var(--green); color: #fff; background: var(--green); }
footer.site .brand-block .lockup { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; letter-spacing: 0.04em; color: #fff; line-height: 1; margin-bottom: 6px; }
footer.site .brand-block .lockup span { display: block; font-size: 10px; letter-spacing: 0.22em; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }
footer.site .brand-block p { margin: 12px 0 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.7); }
footer.site h5 { color: #fff; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin: 0 0 18px; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.site ul a { color: rgba(255,255,255,0.65); }
footer.site ul a:hover { color: #fff; }
footer.site .fbottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  nav.primary { display: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  footer.site .ftop { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer.site .brand-block { grid-column: span 2; max-width: 560px; }
}
@media (max-width: 620px) {
  .work-grid, .events-grid { grid-template-columns: 1fr; }
  section.block { padding: 56px 0; }
  .track { grid-template-columns: auto 1fr; }
  .track .t-len { grid-column: 2; }
  .sub-card { padding: 32px 24px; }
  .sub-card form { flex-direction: column; }
  footer.site .ftop { grid-template-columns: 1fr; }
  footer.site .brand-block { grid-column: auto; }
  .prose p:first-of-type::first-letter { font-size: 52px; }
}

/* ===== HOMEPAGE (scoped to body.home) ===== */
.home h1, .home h2, .home h3, .home h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
  }
.home a { color: inherit; text-decoration: none; }
.home img { max-width: 100%; display: block; }
.home .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.home .narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.home /* ---------- Header (solid, .home fixed) ---------- */
  header.site {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 4px 18px -16px rgba(31,51,68,0.35);
  }
.home .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 104px;
  }
.home .brand { display: flex; align-items: center; gap: 16px; }
.home .brand img {
    width: 80px; height: 80px; object-fit: contain;
  }
.home .brand .lockup {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--navy);
    line-height: 1;
  }
.home .brand .lockup span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--ink-soft);
    margin-top: 4px;
    font-weight: 500;
  }
.home nav.primary { display: flex; gap: 32px; }
.home nav.primary a {
    font-size: 14px; font-weight: 500;
    color: var(--ink-soft);
    transition: color .15s ease;
  }
.home nav.primary a:hover { color: var(--navy); }
.home .nav-actions { display: flex; align-items: center; gap: 16px; }
.home .icon-btn {
    width: 36px; height: 36px; border-radius: 999px;
    display: grid; place-items: center;
    color: var(--ink-soft);
    transition: color .15s, background .15s;
  }
.home .icon-btn:hover { background: var(--cream); color: var(--navy); }
.home .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
    border: 1px solid transparent; cursor: pointer;
    transition: all .18s ease;
  }
.home .btn-primary { background: var(--green); color: white; }
.home .btn-primary:hover { background: var(--green-deep); }
.home .btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.home .btn-ghost:hover { background: var(--navy); color: white; }
.home .btn-light { background: white; color: var(--navy); }
.home .btn-light:hover { background: var(--cream); }
.home /* ---------- Hero (v1 banner + v3 "currently in print" sidecar) ---------- */
  .hero {
    position: relative;
    min-height: 640px;
    color: white;
    overflow: hidden;
    isolation: isolate;
    display: flex; align-items: center;
  }
.home .hero::before {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background:
      linear-gradient(180deg, rgba(21,34,45,0.55) 0%, rgba(21,34,45,0.85) 100%),
      url('https://images.unsplash.com/photo-1418065460487-3e41a6c84dc5?auto=format&fit=crop&w=2000&q=70') center/cover no-repeat;
  }
.home .hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: end;
    padding: 120px 0 110px;
  }
.home .hero-content { max-width: 680px; }
.home .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); font-weight: 600;
    margin-bottom: 28px;
  }
.home .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: var(--green);
  }
.home .hero h1 {
    font-size: clamp(38px, 5.2vw, 62px);
    color: white;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.08;
  }
.home .hero h1 em { color: var(--sky); font-style: italic; }
.home .hero p.lede {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin: 0 0 36px;
  }
.home .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.home .hero .btn-ghost { color: white; border-color: rgba(255,255,255,0.55); }
.home .hero .btn-ghost:hover { background: white; color: var(--navy); border-color: white; }
.home .hero-meta {
    position: absolute; bottom: 28px; left: 0; right: 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
.home .hero-meta .pulse {
    display: inline-flex; align-items: center; gap: 8px;
  }
.home .pulse .dot {
    width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
    animation: pulse 2s infinite;
  }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  }
@media (prefers-reduced-motion: reduce) {
  .home .pulse .dot, .home .press-track { animation: none !important; }
}
.home /* Currently in print sidecar — fits the dark hero, .home v1 typography */
  .cip {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 28px 30px 30px;
    color: white;
    box-shadow: 0 20px 60px -30px rgba(0,0,0,0.6);
  }
.home .cip-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sky); font-weight: 700;
    margin-bottom: 14px;
  }
.home .cip-label .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 0 0 rgba(47,125,58,0.7);
    animation: pulse 2s infinite;
  }
.home .cip-masthead {
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); font-weight: 600;
    margin-bottom: 14px;
  }
.home .cip h3 {
    font-family: 'Fraunces', serif;
    color: white;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 16px;
  }
.home .cip h3 a:hover { color: var(--sky); }
.home .cip-pull {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16.5px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.16);
    margin: 0 0 18px;
  }
.home .cip-read {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: white; font-weight: 700;
    border-bottom: 2px solid var(--green);
    padding-bottom: 4px;
    display: inline-block;
  }
.home .cip-read:hover { color: var(--sky); border-bottom-color: var(--sky); }
.home /* ---------- Press marquee (NEW: sponsored brands) ---------- */
  .press {
    background: var(--cream-soft);
    border-bottom: 1px solid var(--rule);
    padding: 36px 0;
    overflow: hidden;
  }
.home .press-label {
    text-align: center;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 600;
    margin-bottom: 26px;
  }
.home .press-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
.home .press-track {
    display: flex; align-items: center;
    gap: 72px;
    width: max-content;
    animation: scroll 42s linear infinite;
  }
.home .press-track:hover { animation-play-state: paused; }
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
.home .press-logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.005em;
    color: var(--navy);
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity .2s;
    flex-shrink: 0;
  }
.home .press-logo:hover { opacity: 1; }
.home .press-logo em { font-style: italic; }
.home /* ---------- Section scaffold (v1) ---------- */
  section.block { padding: 96px 0; }
.home .section-head {
    display: flex; align-items: end; justify-content: space-between;
    margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
  }
.home .section-head h2 {
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 500;
  }
.home .section-head .kicker {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--green); font-weight: 600;
    margin-bottom: 14px;
  }
.home .section-head a.link {
    font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy); font-weight: 600;
    border-bottom: 2px solid var(--green);
    padding-bottom: 4px;
  }
.home /* ---------- Quarterly 3-col (v2 layout, .home v1 styling) ---------- */
  .quarterly { padding: 88px 0 96px; }
.home .quarterly-rule {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 56px;
    position: relative;
  }
.home .quarterly-rule::before, .home .quarterly-rule::after {
    content: ""; flex: 1; height: 1px; background: var(--rule);
  }
.home .quarterly-rule span {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink-soft);
    padding: 0 28px;
    font-weight: 500;
  }
.home .quarterly-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
  }
.home .qcol h4.qhead {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--navy);
    font-weight: 500;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
  }
.home /* Event card (dark navy hero card) */
  .event-card {
    background: var(--navy);
    color: white;
    border-radius: 4px;
    padding: 56px 28px;
    text-align: center;
    margin-bottom: 18px;
  }
.home .event-card .date-big {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    color: white;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
.home .event-card .where {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sky); font-weight: 600;
  }
.home .event-card .where .sep { color: rgba(255,255,255,0.4); padding: 0 6px; }
.home .q-item { display: block; margin-bottom: 32px; }
.home .q-item:last-child { margin-bottom: 0; }
.home .q-item .tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--green); font-weight: 700;
    margin-bottom: 10px;
  }
.home .q-item .tag.event { color: #b45309; }
.home .q-item .tag svg { color: currentColor; }
.home .q-item h3 {
    font-size: 22px; font-weight: 500; line-height: 1.25;
    margin: 0 0 10px; color: var(--ink);
  }
.home .q-item p {
    color: var(--ink-soft); font-size: 15px;
    margin: 0 0 12px; line-height: 1.6;
  }
.home .q-item .more {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy); font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 2px solid var(--green);
    padding-bottom: 3px;
  }
.home .q-item .more svg { transition: transform .2s; }
.home .q-item:hover .more svg { transform: translateX(3px); }
.home .q-image {
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--cream);
  }
.home .q-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.home .q-item:hover .q-image img { transform: scale(1.04); }
.home .more-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy); font-weight: 700;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 4px;
  }
.home /* Latest writing — masthead-style mini cards */
  .masthead-card {
    background: white;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
    transition: transform .2s ease, box-shadow .2s ease;
    display: block;
  }
.home .masthead-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -22px rgba(31,51,68,0.3);
  }
.home .masthead-card .mh-head {
    background: var(--navy);
    color: white;
    padding: 18px 20px 14px;
    text-align: center;
  }
.home .masthead-card .mh-head .name {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.005em;
    color: white;
    line-height: 1.1;
  }
.home .masthead-card .mh-head .kind {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 600;
    margin-top: 6px;
  }
.home .masthead-card .mh-body { padding: 18px 20px 20px; }
.home .masthead-card .mh-pub {
    font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 600;
    margin-bottom: 8px;
  }
.home .masthead-card .mh-pub em { font-style: italic; color: var(--green); }
.home .masthead-card h4 {
    font-size: 17px; font-weight: 500; line-height: 1.3;
    color: var(--navy);
    margin: 0 0 10px;
  }
.home .masthead-card .mh-meta {
    font-size: 12px;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Fraunces', serif;
  }
.home /* Mini signup */
  .mini-signup {
    margin-top: 24px;
    padding: 22px 24px;
    background: var(--cream-soft);
    border: 1px solid var(--rule);
    border-radius: 4px;
  }
.home .mini-signup h5 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: var(--navy);
    margin: 0 0 12px;
  }
.home .mini-signup form {
    display: flex; gap: 6px;
    background: white;
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 10px;
  }
.home .mini-signup input {
    flex: 1; border: 0; background: transparent;
    padding: 8px 14px; font-family: inherit; font-size: 13px;
    color: var(--ink);
  }
.home .mini-signup input:focus { outline: none; }
.home .mini-signup input::placeholder { color: var(--ink-soft); }
.home .mini-signup button {
    background: var(--green); color: white;
    border: 0; border-radius: 999px;
    padding: 8px 16px; font-weight: 600; font-size: 12px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 5px;
  }
.home .mini-signup button:hover { background: var(--green-deep); }
.home .mini-signup small {
    color: var(--ink-soft); font-size: 11.5px; line-height: 1.5;
    display: block;
  }
.home /* ---------- Pillars (v1 verbatim) ---------- */
  .pillars-section {
    background: var(--cream-soft);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
.home .pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
.home .pillar {
    background: white;
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 36px 28px 32px;
    display: flex; flex-direction: column;
    transition: all .25s ease;
    position: relative;
  }
.home .pillar::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--green);
    border-radius: 4px 4px 0 0;
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }
.home .pillar:hover {
    border-color: transparent;
    box-shadow: 0 18px 40px -22px rgba(31,51,68,0.3);
    transform: translateY(-2px);
  }
.home .pillar:hover::before { transform: scaleX(1); }
.home .pillar .ico {
    width: 44px; height: 44px; border-radius: 8px;
    background: var(--cream); color: var(--green);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
.home .pillar h3 {
    font-size: 22px; font-weight: 500;
    margin-bottom: 10px;
  }
.home .pillar p {
    color: var(--ink-soft); font-size: 15px; flex: 1;
    margin: 0 0 22px;
  }
.home .pillar .more {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy); font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
  }
.home .pillar .more svg { transition: transform .25s; }
.home .pillar:hover .more svg { transform: translateX(4px); }
.home /* ---------- Founder / About the work (v1 verbatim) ---------- */
  .founder { background: var(--navy); color: white; }
.home .founder .grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }
.home .founder img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: 4px;
  }
.home .founder .kicker {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 600;
    margin-bottom: 14px;
  }
.home .founder h2 {
    color: white; font-size: clamp(32px, 3.6vw, 44px);
    font-weight: 400; margin-bottom: 20px;
  }
.home .founder h2 em { color: var(--sky); font-style: italic; }
.home .founder p { color: rgba(255,255,255,0.78); margin: 0 0 18px; font-size: 17px; }
.home .founder .signoff {
    margin-top: 32px; font-family: 'Fraunces', serif;
    font-style: italic; color: var(--sky); font-size: 18px;
  }
.home /* ---------- Music section (v3 layout, .home v1 colors/typography) ---------- */
  .music {
    background: var(--navy-deep);
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
.home .music .section-head { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 0; margin-bottom: 56px; }
.home .music .section-head .kicker { color: var(--sky); }
.home .music .section-head h2 { color: white; font-weight: 400; }
.home .music .section-head h2 em { color: var(--sky); font-style: italic; }
.home .music .section-head a.link {
    color: white; border-color: var(--sky);
  }
.home .music-intro {
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: -32px 0 0;
    font-size: 16px;
  }
.home .music-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: start;
  }
.home .wave-big {
    display: flex; align-items: end; justify-content: space-between;
    gap: 3px;
    height: 180px;
    margin-bottom: 28px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
.home .wave-big i {
    flex: 1;
    background: linear-gradient(180deg, var(--sky) 0%, var(--green) 100%);
    border-radius: 1.5px;
    opacity: 0.85;
  }
.home .now-playing {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 6px;
  }
.home .now-playing .play-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green);
    display: grid; place-items: center;
    cursor: pointer;
    transition: transform .15s, background .15s;
    border: none;
    flex-shrink: 0;
  }
.home .now-playing .play-btn:hover { background: var(--green-deep); transform: scale(1.05); }
.home .now-playing .play-btn svg { margin-left: 3px; }
.home .now-playing .np-eyebrow {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sky); font-weight: 600;
    margin-bottom: 4px;
  }
.home .now-playing .np-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
  }
.home .tracklist {
    list-style: none; padding: 0; margin: 16px 0 0;
  }
.home .tracklist li {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: padding .15s, background .15s;
  }
.home .tracklist li:hover { background: rgba(255,255,255,0.03); padding-left: 8px; padding-right: 8px; }
.home .tracklist li:last-child { border-bottom: 0; }
.home .tracklist .n { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 600; }
.home .tracklist .ti {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: white;
    font-weight: 500;
  }
.home .tracklist .yr {
    font-size: 11px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
  }
.home .tracklist .len {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    min-width: 42px;
    text-align: right;
    font-variant-numeric: tabular-nums;
  }
.home .music-side h3 {
    color: white;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 500;
  }
.home .music-side p {
    color: rgba(255,255,255,0.72);
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.65;
  }
.home .music-side .listen-on {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 24px; flex-wrap: wrap;
  }
.home .music-side .listen-on a {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 3px;
  }
.home .music-side .listen-on a:hover { color: var(--sky); border-color: var(--sky); }
.home /* ---------- FAQ (v1) ---------- */
  .faq-section { background: var(--cream-soft); }
.home .faq { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.home .faq-intro p { color: var(--ink-soft); margin: 14px 0 0; }
.home .accordion {
    border-top: 1px solid var(--rule);
  }
.home details {
    border-bottom: 1px solid var(--rule);
    padding: 24px 0;
  }
.home details summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Fraunces', serif;
    font-size: 19px; font-weight: 500;
    color: var(--navy);
    gap: 24px;
  }
.home details summary::-webkit-details-marker { display: none; }
.home details summary .toggle {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--rule); background: white;
    display: grid; place-items: center; flex-shrink: 0;
    transition: all .2s ease;
    color: var(--navy);
  }
.home details[open] summary .toggle {
    background: var(--green); color: white; border-color: var(--green);
    transform: rotate(45deg);
  }
.home details > div {
    padding-top: 14px;
    color: var(--ink-soft);
    max-width: 640px;
  }
.home /* ---------- Subscribe (v1) ---------- */
  .subscribe {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white;
    text-align: center;
  }
.home .subscribe .narrow { padding-top: 96px; padding-bottom: 96px; }
.home .subscribe .kicker {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sky); font-weight: 600;
    margin-bottom: 18px;
  }
.home .subscribe h2 {
    color: white; font-size: clamp(34px, 4vw, 48px);
    font-weight: 400; margin-bottom: 16px;
  }
.home .subscribe p {
    color: rgba(255,255,255,0.78); font-size: 17px;
    margin: 0 auto 40px; max-width: 520px;
  }
.home .subscribe form {
    display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 6px;
  }
.home .subscribe input {
    flex: 1; border: 0; background: transparent;
    padding: 12px 18px; color: white; font-size: 15px;
    font-family: inherit;
  }
.home .subscribe input::placeholder { color: rgba(255,255,255,0.5); }
.home .subscribe input:focus { outline: none; }
.home .subscribe button {
    background: var(--green); color: white;
    border: 0; border-radius: 999px;
    padding: 12px 24px; font-weight: 600; font-size: 14px;
    cursor: pointer;
  }
.home .subscribe button:hover { background: var(--green-deep); }
.home .subscribe small {
    display: block; margin-top: 18px; font-size: 12px;
    color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
  }
.home /* ---------- Footer (v1 with enlarged logo) ---------- */
  footer.site {
    background: #0f1a23; color: rgba(255,255,255,0.65);
    padding: 72px 0 32px;
    font-size: 14px;
  }
.home footer .top {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
.home /* Enlarged logo, .home juxtaposed to description */
  footer .brand-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
  }
.home footer .brand-block .footer-logo {
    width: 176px; height: 176px; object-fit: contain;
    display: block;
  }
.home footer .brand-block .brand-text { line-height: 1.5; }
.home footer .brand-block .lockup {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
  }
.home footer .brand-block .lockup span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    font-weight: 500;
  }
.home footer .brand-block p {
    margin: 12px 0 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
  }
.home footer h5 {
    color: white; font-size: 12px; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 600;
    margin: 0 0 18px;
  }
.home footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.home footer ul a { color: rgba(255,255,255,0.65); }
.home footer ul a:hover { color: white; }
.home footer .bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; flex-wrap: wrap; gap: 16px;
    font-size: 12px; color: rgba(255,255,255,0.45);
  }
.home footer .socials { display: flex; gap: 14px; }
.home footer .socials a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.7);
  }
.home footer .socials a:hover { border-color: var(--green); color: white; background: var(--green); }
.home /* ---------- Responsive ---------- */
  @media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 80px 0 80px; }
    .cip { max-width: 520px; }
    .quarterly-grid { grid-template-columns: 1fr 1fr; }
    .quarterly-grid .qcol:nth-child(3) { grid-column: span 2; max-width: 560px; margin: 0 auto; width: 100%; }
    .music-grid { grid-template-columns: 1fr; gap: 56px; }
  }
@media (max-width: 880px) {
  .home nav.primary { display: none; }
  .home .pillars { grid-template-columns: repeat(2, 1fr); }
  .home .founder .grid { grid-template-columns: 1fr; gap: 40px; }
  .home .faq { grid-template-columns: 1fr; gap: 40px; }
  .home footer .top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .home footer .brand-block { grid-column: span 2; max-width: 560px; }
}
@media (max-width: 600px) {
  .home .quarterly-grid { grid-template-columns: 1fr; }
  .home .quarterly-grid .qcol:nth-child(3) { grid-column: auto; }
  .home .pillars { grid-template-columns: 1fr; }
  .home section.block { padding: 64px 0; }
  .home .subscribe form { flex-direction: column; border-radius: 16px; }
  .home .subscribe button { width: 100%; }
  .home footer .top { grid-template-columns: 1fr; }
  .home footer .brand-block { grid-column: auto; }
}
