/* ============================================================
   Counsel House — executive membership design system
   Noir · charcoal · gold · ivory
   ============================================================ */

:root {
  /* palette */
  --noir:        #0F0F11;
  --charcoal:    #1B1C20;
  --charcoal-2:  #26272D;
  --ink:         #16161A;
  --ink-soft:    #5E5B54;
  --ivory:       #F4EFE4;
  --paper:       #FBF8F1;
  --gold:        #B08A3E;
  --gold-ink:    #8A6A2E;   /* gold for small text on light (passes contrast) */
  --gold-bright: #C9A24A;
  --gold-soft:   #DCC78E;
  --line:        #E4DCCB;
  --line-dark:   rgba(220,199,142,0.18);
  --line-soft:   rgba(255,255,255,0.10);

  --display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --serif:   "Newsreader", Georgia, serif;
  --ui:      "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ivory); color: var(--ink);
  font-family: var(--ui); font-size: 17px; line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--noir); color: var(--gold-soft); padding: .6rem 1rem; font-family: var(--ui); font-size: .85rem; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--ui); font-size: .72rem; letter-spacing: .26em;
  text-transform: uppercase; font-weight: 600; color: var(--gold-ink);
  display: inline-block;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold-bright); }

/* ---------- emblem + brand ---------- */
.spine { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%); }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: inherit; }
.brand__seal { width: 38px; height: 38px; flex: none; }
.brand__name {
  font-family: var(--display); font-size: 1.25rem; letter-spacing: .2em;
  text-transform: uppercase; line-height: 1; font-weight: 400;
}

/* ---------- masthead ---------- */
.masthead { background: var(--noir); color: var(--ivory); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line-soft); }
.masthead .brand { color: var(--ivory); }
.masthead__row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .9rem; }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { font-family: var(--ui); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; text-decoration: none; color: var(--ivory); padding-block: .3rem; position: relative; opacity: .88; }
.nav a:hover { opacity: 1; color: var(--gold-soft); }
.nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold); }

/* ---------- buttons ---------- */
.btn { font-family: var(--ui); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-decoration: none; cursor: pointer; display: inline-flex; align-items: center; gap: .55rem; background: var(--noir); color: var(--ivory); border: 1px solid var(--noir); padding: .68rem 1.3rem; border-radius: 1px; transition: background .18s ease, color .18s ease, border-color .18s ease; }
.btn:hover { background: #000; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--noir); }
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--noir); }
.btn--light:hover { background: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.on-dark .btn--ghost { color: var(--ivory); border-color: rgba(244,239,228,.5); }
.on-dark .btn--ghost:hover { background: var(--ivory); color: var(--noir); border-color: var(--ivory); }
.btn--lg { padding: .85rem 1.7rem; font-size: .88rem; }

/* mobile menu */
.menu-toggle { display: none; }
.menu-toggle > summary { list-style: none; cursor: pointer; padding: .4rem; font-family: var(--ui); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory); }
.menu-toggle > summary::-webkit-details-marker { display: none; }
@media (max-width: 880px) {
  .nav--desk { display: none; }
  .menu-toggle { display: block; position: relative; }
  .menu-toggle[open] .panel { display: flex; flex-direction: column; position: absolute; right: 0; top: calc(100% + .7rem); background: var(--charcoal); border: 1px solid var(--line-soft); padding: .5rem; min-width: 210px; box-shadow: 0 20px 44px rgba(0,0,0,.4); z-index: 120; }
  .menu-toggle .panel a { padding: .65rem .8rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: var(--ivory); }
  .menu-toggle .panel a:hover { background: var(--charcoal-2); color: var(--gold-soft); }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section--noir { background: var(--noir); color: var(--ivory); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }
.section--noir, .section--charcoal { }
.section__head { max-width: 60ch; margin-bottom: 2.8rem; }
.section__head h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.95rem, 4vw, 2.9rem); line-height: 1.08; margin: .8rem 0 0; letter-spacing: -.005em; }
.section--noir .section__head h2, .section--charcoal .section__head h2 { color: var(--ivory); }
.section__lead { font-family: var(--serif); font-size: clamp(1.08rem,2vw,1.3rem); color: var(--ink-soft); margin-top: 1rem; max-width: 56ch; }
.section--noir .section__lead, .section--charcoal .section__lead { color: #C9C4B8; }
.section__cta { margin-top: 2.6rem; }

/* ---------- hero ---------- */
.hero { background: var(--noir); color: var(--ivory); position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 80% 0%, rgba(176,138,62,.12), transparent 60%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; z-index: 1; }
.hero__rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.hero__rule::after { content: ""; flex: 1; height: 1px; background: var(--line-dark); }
.hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.6rem, 5.6vw, 4.5rem); line-height: 1.03; letter-spacing: -.01em; margin: 0 0 1.4rem; }
.hero__deck { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.38rem); line-height: 1.5; color: #C9C4B8; max-width: 46ch; margin: 0 0 2.2rem; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__art { position: relative; aspect-ratio: 4/5; border: 1px solid var(--line-dark); border-radius: 2px; overflow: hidden; }
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { aspect-ratio: 16/10; max-height: 360px; order: -1; }
}

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar { padding: 0 clamp(1rem,2.5vw,2.1rem); border-left: 1px solid var(--line); }
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar__mark { width: 34px; height: 34px; color: var(--gold-ink); margin-bottom: 1.1rem; }
.pillar h3 { font-family: var(--display); font-weight: 400; font-size: 1.55rem; margin: 0 0 .7rem; line-height: 1.1; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 780px) {
  .pillars { grid-template-columns: 1fr; gap: 2.2rem; }
  .pillar { border-left: none; border-top: 1px solid var(--line); padding: 1.7rem 0 0; }
  .pillar:first-child { border-top: none; padding-top: 0; }
}

/* ---------- featured podcast ---------- */
.featured { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.8rem,4vw,3.5rem); align-items: center; }
.featured__media { position: relative; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; border: 1px solid var(--line-dark); background: var(--charcoal-2); display: block; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(15,15,17,.25); transition: background .2s ease; }
.featured__media:hover .featured__play { background: rgba(15,15,17,.45); }
.featured__play svg { width: 64px; height: 64px; }
.featured h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem,3vw,2.1rem); line-height: 1.12; margin: .7rem 0 .5rem; color: var(--ivory); }
.featured__guest { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-soft); margin: 0 0 1.4rem; }
@media (max-width: 820px) { .featured { grid-template-columns: 1fr; } }

/* ---------- episode cards ---------- */
.episodes { display: grid; grid-template-columns: repeat(auto-fill, minmax(244px, 1fr)); gap: clamp(1.1rem, 2.5vw, 1.7rem); }
.recent-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.1rem,2.5vw,1.6rem); }
.ep { text-decoration: none; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ep:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(15,15,17,.14); border-color: var(--gold-soft); }
.ep__thumb { position: relative; aspect-ratio: 16/9; background: var(--charcoal-2); overflow: hidden; }
.ep__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ep__play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(15,15,17,0); transition: background .2s ease; }
.ep:hover .ep__play { background: rgba(15,15,17,.34); }
.ep__play svg { width: 50px; height: 50px; opacity: 0; transform: scale(.8); transition: all .2s ease; }
.ep:hover .ep__play svg { opacity: 1; transform: scale(1); }
.ep__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.ep__tag { font-family: var(--ui); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); }
.ep__title { font-family: var(--display); font-weight: 400; font-size: 1.1rem; line-height: 1.2; }
.ep__guest { font-family: var(--serif); font-size: .95rem; color: var(--ink-soft); margin-top: auto; }

/* ---------- events ---------- */
.events { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1.1rem,2.5vw,1.6rem); }
.event-card { background: var(--charcoal); border: 1px solid var(--line-soft); border-radius: 3px; padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; transition: border-color .2s ease, transform .2s ease; }
.event-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.event-card__date { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1px solid var(--gold); color: var(--gold-soft); border-radius: 2px; font-family: var(--ui); }
.event-card__date .m { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.event-card__date .d { font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.event-card__type { font-family: var(--ui); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.event-card h3 { font-family: var(--display); font-weight: 400; font-size: 1.3rem; margin: 0; color: var(--ivory); line-height: 1.15; }
.event-card p { margin: 0; color: #B7B2A6; font-size: .95rem; }
.event-card__meta { margin-top: auto; font-family: var(--ui); font-size: .8rem; color: #9A958A; letter-spacing: .03em; }

/* ---------- benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem,3vw,2.6rem) clamp(2rem,4vw,3.4rem); }
.benefit { display: flex; flex-direction: column; gap: .6rem; }
.benefit__icon { width: 30px; height: 30px; color: var(--gold-ink); }
.on-dark .benefit__icon { color: var(--gold-bright); }
.benefit h3 { font-family: var(--display); font-weight: 400; font-size: 1.25rem; margin: 0; line-height: 1.15; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.on-dark .benefit p { color: #C0BBAF; }
@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; } }

/* ---------- sponsorship cta ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split__art { aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.split__art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- final band ---------- */
.band { text-align: center; max-width: 720px; margin: 0 auto; }
.band__seal { width: 54px; height: 54px; margin: 0 auto 1.4rem; }
.band h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem,4.6vw,3.2rem); margin: 0 0 1rem; color: var(--ivory); line-height: 1.08; }
.band p { font-family: var(--serif); font-size: 1.18rem; color: #C9C4B8; max-width: 48ch; margin: 0 auto 2.2rem; }

/* ---------- news index ---------- */
.contents { display: flex; flex-direction: column; }
.entry { display: grid; grid-template-columns: 240px 1fr; gap: clamp(1.2rem,3vw,2.4rem); padding-block: clamp(1.8rem, 4vw, 2.6rem); border-top: 1px solid var(--line); align-items: center; }
.entry:first-child { border-top: none; padding-top: 0; }
.entry__media { aspect-ratio: 16/9; overflow: hidden; border-radius: 3px; background: var(--charcoal-2); }
.entry__media img { width: 100%; height: 100%; object-fit: cover; }
.entry__meta { font-family: var(--ui); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .6rem; }
.entry h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.3rem,2.6vw,1.7rem); line-height: 1.14; margin: 0 0 .6rem; }
.entry h3 a { text-decoration: none; }
.entry h3 a:hover { color: var(--gold-ink); }
.entry p { margin: 0 0 .9rem; color: var(--ink-soft); font-family: var(--serif); font-size: 1.02rem; }
.readmore { font-family: var(--ui); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--gold-ink); text-decoration: none; display: inline-flex; gap: .4rem; align-items: center; }
.readmore:hover { gap: .65rem; }
@media (max-width: 680px) { .entry { grid-template-columns: 1fr; } }

/* ---------- article ---------- */
.article { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem,7vw,5rem); }
.article__head { max-width: 760px; margin: 0 auto 2.4rem; text-align: center; }
.article__head h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.08; margin: 1rem 0 1.2rem; letter-spacing: -.01em; }
.byline { font-family: var(--ui); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.byline b { color: var(--gold-ink); font-weight: 600; }
.embed { max-width: 860px; margin: 0 auto 2.6rem; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); background: #000; }
.embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.prose { max-width: 680px; margin: 0 auto; font-family: var(--serif); font-size: 1.2rem; line-height: 1.72; color: var(--ink); }
.prose > p:first-of-type::first-letter { font-family: var(--display); float: left; font-size: 3.6rem; line-height: .8; padding: .35rem .55rem 0 0; color: var(--gold-ink); }
.prose p { margin: 0 0 1.4rem; }
.prose h2 { font-family: var(--display); font-weight: 400; font-size: 1.6rem; line-height: 1.18; color: var(--ink); margin: 2.6rem 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.prose strong { font-weight: 600; }
.prose blockquote { margin: 2rem 0; padding-left: 1.4rem; border-left: 3px solid var(--gold); font-family: var(--display); font-style: italic; font-size: 1.4rem; line-height: 1.35; color: var(--ink); }
.article__nav { max-width: 680px; margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; font-family: var(--ui); font-size: .8rem; letter-spacing: .06em; }
.article__nav a { text-decoration: none; color: var(--gold-ink); font-weight: 600; }
.article__nav a:hover { text-decoration: underline; }

/* ---------- about ---------- */
.editorial { max-width: 760px; }
.editorial .lede { font-family: var(--serif); font-size: clamp(1.25rem,2.6vw,1.6rem); line-height: 1.5; color: var(--ink); margin: 0 0 2.2rem; }
.creed { border-top: 1px solid var(--line); }
.creed__item { padding-block: 1.8rem; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr; gap: clamp(1rem,3vw,2.5rem); }
.creed__item h3 { font-family: var(--display); font-weight: 400; font-size: 1.4rem; margin: 0; color: var(--ink); line-height: 1.2; }
.creed__item p { margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.08rem; }
@media (max-width: 680px) { .creed__item { grid-template-columns: 1fr; gap: .6rem; } }

/* ---------- forms ---------- */
.formwrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 820px) { .formwrap { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--ui); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea { font-family: var(--ui); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 2px; padding: .75rem .85rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,138,62,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-family: var(--ui); font-size: .85rem; color: var(--ink-soft); margin-top: .4rem; }
.contact-card { background: var(--noir); color: var(--ivory); border-radius: 3px; padding: clamp(1.6rem,3vw,2.2rem); }
.contact-card h3 { font-family: var(--display); font-weight: 400; font-size: 1.5rem; margin: 0 0 1rem; color: var(--ivory); }
.contact-card .creed__item h3 { color: var(--ivory); }
.contact-card .creed__item p { color: #C0BBAF; }
.contact-card .creed { border-top: none; }
.contact-card .creed__item { border-bottom: 1px solid var(--line-soft); }
.contact-line { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; font-size: 1rem; }
.contact-line a { color: var(--gold-soft); text-decoration: none; font-weight: 500; }
.contact-line a:hover { text-decoration: underline; }
.contact-line svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---------- footer ---------- */
.foot { background: var(--noir); color: #C9C4B8; padding-block: clamp(2.8rem,6vw,4rem); }
.foot__top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid var(--line-soft); }
.foot .brand { color: var(--ivory); }
.foot__nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.foot__nav a { color: #C9C4B8; text-decoration: none; font-family: var(--ui); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.foot__nav a:hover { color: var(--gold-soft); }
.foot__bottom { padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--ui); font-size: .78rem; color: #8C887E; }
.foot__bottom a { color: #8C887E; }

.center { text-align: center; }

/* ============================================================
   Social proof additions
   ============================================================ */

/* hero proof line */
.proofline { margin-top: 1.8rem; font-family: var(--ui); font-size: .82rem; letter-spacing: .02em; color: #9A958A; }
.proofline b { color: var(--gold-soft); font-weight: 600; }

/* hero mosaic of real guests */
.hero__mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border: 1px solid var(--line-dark); border-radius: 2px; padding: 8px; }
.hero__mosaic a { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 1px; background: var(--charcoal-2); display: block; }
.hero__mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.hero__mosaic a:hover img { transform: scale(1.05); }
.hero__mosaic .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: .5rem .6rem; font-family: var(--ui); font-size: .64rem; letter-spacing: .04em; color: var(--ivory); background: linear-gradient(transparent, rgba(15,15,17,.85)); line-height: 1.25; }
@media (max-width: 880px) { .hero__mosaic { max-width: 460px; } }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1; color: var(--gold-soft); }
.stat__label { font-family: var(--ui); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: #B7B2A6; margin-top: .55rem; }
.stat { padding-inline: 1rem; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; gap: 2rem; } .stat { border-left: none; } }

/* credibility / company strip */
.credibility { text-align: center; }
.credibility__lead { font-family: var(--ui); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.4rem; }
.on-dark .credibility__lead { color: #B7B2A6; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.2rem 2.4rem; }
.logos span { font-family: var(--display); font-size: clamp(1.05rem, 2.4vw, 1.4rem); letter-spacing: .04em; color: var(--ink); opacity: .82; }
.on-dark .logos span { color: var(--ivory); }
.logos i { color: var(--gold); font-style: normal; opacity: .6; }

/* featured guests */
.guests { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.5vw,1.6rem); }
.guest { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.guest__photo { aspect-ratio: 1/1; overflow: hidden; border-radius: 3px; border: 1px solid var(--line); background: var(--charcoal-2); margin-bottom: .9rem; }
.guest__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.guest:hover .guest__photo img { transform: scale(1.04); }
.guest__name { font-family: var(--display); font-size: 1.2rem; line-height: 1.12; }
.guest__role { font-family: var(--serif); font-size: .92rem; color: var(--ink-soft); margin-top: .25rem; }
@media (max-width: 820px) { .guests { grid-template-columns: 1fr 1fr; } }

/* sponsor logo row (placeholder until real logos provided) */
.sponsor-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.sponsor-slot { flex: 1 1 130px; min-width: 110px; height: 64px; border: 1px dashed var(--line); border-radius: 2px; display: grid; place-items: center; font-family: var(--ui); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #B6AE9D; }

/* official logo lockup */
.brand__logo { height: 38px; width: auto; display: block; }
.band__logo { height: clamp(66px, 10vw, 92px); width: auto; margin: 0 auto 1.5rem; display: block; }
@media (max-width: 520px) { .brand__logo { height: 32px; } }
