/* ============================================================
   Rory O'Connor — personal site
   Editorial / journalistic style.
   ============================================================ */

/* ---------- Typography (Google Fonts) ---------- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --ink:        #14110f;
  --ink-soft:   #3a3531;
  --muted:      #6b625b;
  --rule:       #d9d2c6;
  --paper:      #fbf8f2;
  --paper-alt:  #f3ede1;
  --accent:     #8a1f1f;     /* deep ink red, editorial */
  --accent-ink: #5d1414;

  --serif:      'EB Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --display:    'Playfair Display', 'EB Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --measure:    68ch;
  --radius:     2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "liga", "onum";
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(138,31,31,0.25); transition: color .15s, border-color .15s; }
a:hover { color: var(--accent-ink); border-bottom-color: var(--accent-ink); }

/* ---------- Layout wrappers ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Masthead / nav ---------- */
.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.masthead__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.25rem 0 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.masthead__brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: .01em;
  color: var(--ink);
  border: 0;
}
.masthead__brand small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}
.nav {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav a {
  color: var(--ink-soft);
  border: 0;
  margin-left: 1.25rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- Mobile nav toggle (hamburger) ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 760px) {
  .masthead__inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    gap: 0;
  }
  .masthead__brand {
    flex: 1 1 100%;
    text-align: center;
    font-size: 1.5rem;
    padding: 0 56px;
  }
  .masthead__brand small {
    font-size: .65rem;
  }
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 1rem;
  }
  .nav {
    display: none;
    flex-basis: 100%;
    width: 100%;
    margin-top: 1rem;
    padding-top: .25rem;
    border-top: 1px solid var(--rule);
  }
  .nav.is-open { display: block; }
  .nav a {
    display: block;
    margin: 0;
    padding: .9rem .25rem;
    border-bottom: 1px solid var(--rule);
    font-size: .9rem;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a:hover,
  .nav a[aria-current="page"] {
    border-bottom-color: var(--rule);
    background: var(--paper-alt);
    padding-left: .75rem;
  }
}

/* ---------- Hero (home page) ---------- */
.hero {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--rule);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__kicker {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.hero__lede {
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  font-style: italic;
}
.hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__portrait .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

@media (max-width: 760px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__portrait { max-width: 320px; }
}

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}
.page-header__kicker {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .75rem;
}
.page-header__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.page-header__lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 60ch;
  font-style: italic;
  margin: 0;
}

/* ---------- Section heads ---------- */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
}
.section:last-of-type { border-bottom: 0; }
.section__eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .5rem;
}
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

/* ---------- Prose ---------- */
.prose p {
  margin: 0 0 1.1em;
  max-width: var(--measure);
}
.prose p:first-of-type::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 3.6em;
  line-height: .9;
  padding: .08em .12em 0 0;
  color: var(--accent);
  font-weight: 900;
}
.prose h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 2.4rem 0 .8rem;
  color: var(--ink);
}
.prose h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 .6rem;
}
.prose blockquote {
  margin: 1.8rem 0;
  padding: 0 0 0 1.4rem;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.25rem;
}

/* ---------- Featured strip (home) ---------- */
.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.featured__card {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.featured__card__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}
.featured__card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.featured__card__thumb:hover img { transform: scale(1.03); }
.featured__card__thumb .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.featured__card .kicker {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.featured__card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 .6rem;
}
.featured__card h3 a { color: var(--ink); border: 0; }
.featured__card h3 a:hover { color: var(--accent); }
.featured__card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 760px) {
  .featured { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- In Brief (homepage) ---------- */
.in-brief {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.in-brief__portrait {
  margin: 0;
  border: 1px solid var(--rule);
  background: var(--paper-alt);
}
.in-brief__portrait img {
  display: block;
  width: 100%;
  height: auto;
}
.in-brief__body { max-width: 56ch; }
@media (max-width: 760px) {
  .in-brief { grid-template-columns: 1fr; gap: 1.75rem; }
  .in-brief__portrait { max-width: 320px; }
}

/* ---------- Film gallery (featured) ---------- */
.film-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
}
@media (max-width: 1000px) {
  .film-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .film-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .film-gallery { grid-template-columns: 1fr; }
}
.film-card { display: block; }
.film-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--ink);
  margin-bottom: .85rem;
  border-radius: 0;
  transition: transform .18s ease;
}
.film-card__thumb:hover { transform: translateY(-2px); }
.film-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.film-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at top right, rgba(138,31,31,.35), rgba(15,15,15,1) 65%);
}
.film-card__placeholder .film-card__year {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .8;
  margin-bottom: .35rem;
}
.film-card__placeholder .film-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: .25rem;
}
.film-card__placeholder .film-card__role {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  line-height: 1.3;
  color: var(--paper);
  opacity: .75;
}
.film-card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  margin: 0 0 .25rem;
  color: var(--ink);
}
.film-card__meta {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* ---------- Film list ---------- */
.work-list { list-style: none; padding: 0; margin: 0; }
.work-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.75rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rule);
}
.work-item:first-child { border-top: 0; padding-top: 0; }
.work-item__year {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  color: var(--muted);
  padding-top: .25rem;
}
.work-item__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 .3rem;
  color: var(--ink);
}
.work-item__meta {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .6rem;
}
.work-item__desc {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0;
  max-width: 62ch;
}
@media (max-width: 620px) {
  .work-item { grid-template-columns: 1fr; gap: .4rem; }
  .work-item__year { padding-top: 0; }
}

/* ---------- Book cards ---------- */
.books {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.book {
  display: flex;
  flex-direction: column;
}
.book__cover {
  aspect-ratio: 2 / 3;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .35);
}
.book__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book__cover .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--ink-soft);
}
.book__cover .placeholder small {
  display: block;
  margin-top: .7rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.book__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 .35rem;
}
.book__meta {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .75rem;
}
.book__desc {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.book__links {
  margin-top: auto;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .04em;
}
.book__links a { margin-right: 1.1rem; }

/* ---------- Press / writing list ---------- */
.press {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.press__card {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.press__card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 .4rem;
}
.press__card h3 a { color: var(--ink); border: 0; }
.press__card h3 a:hover { color: var(--accent); }
.press__card p {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0;
}
.press__card .source {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.press__card .wordmark {
  margin-top: .9rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: .65rem;
}

/* ---------- Byline (Journalism page header) ---------- */
.byline__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin: .25rem 0 1.25rem;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: .65rem;
}
.byline__portrait {
  margin: 0 auto 1.75rem;
  width: 320px;
  max-width: 100%;
  text-align: center;
}
.byline__portrait img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  filter: sepia(.05);
}
.byline__portrait figcaption {
  margin-top: .55rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}
.byline__body p {
  font-size: 1.05rem;
  line-height: 1.65;
}
.byline__body { clear: both; }

/* ---------- About page inset photo ---------- */
.about__inset {
  margin: 2.5rem 0 0;
}
.about__inset img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}
.about__inset figcaption {
  margin-top: .65rem;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contact page figure ---------- */
.contact-figure {
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
}
.contact-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}
.contact-figure figcaption {
  margin-top: .65rem;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.wordmarks {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
  border-top: 1px solid var(--rule);
}
.wordmarks li {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  color: var(--ink);
  background: var(--paper-alt);
  padding: .45rem .85rem;
  border: 1px solid var(--rule);
}

/* ---------- Press response (pull quotes + collage) ---------- */
.press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.press-quote {
  margin: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--paper-alt);
  border-left: 3px solid var(--accent);
}
.press-quote blockquote {
  margin: 0 0 .85rem;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
}
.press-quote blockquote p { margin: 0; }
.press-quote figcaption {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.press-collage {
  margin: 0;
}
.press-collage img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}
.press-collage figcaption {
  margin-top: .85rem;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Awards strip (condensed marquee) ---------- */
.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  margin-bottom: 2.5rem;
}
.award {
  min-width: 180px;
}
.award__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  display: block;
  margin-bottom: .2rem;
}
.award__note {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Honors (detailed list) ---------- */
.honors {
  list-style: none;
  padding: 0;
  margin: 0;
}
.honors li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
}
.honors li:first-child {
  border-top: 0;
  padding-top: 0;
}
.honors__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 .3rem;
  color: var(--ink);
}
.honors__note {
  font-family: var(--sans);
  font-size: .88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.honors__note em {
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.contact-card {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.contact-card__label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.contact-card__value {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}
.contact-card__value a { color: var(--ink); border: 0; }
.contact-card__value a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.colophon {
  border-top: 1px solid var(--rule);
  margin-top: 4rem;
  padding: 2.5rem 0 3rem;
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
}
.colophon__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.colophon a { color: var(--muted); border: 0; }
.colophon a:hover { color: var(--accent); }

/* ---------- Global Center section ---------- */
.global-center {
  background: #03060f;
  color: #f3ede1;
  padding: 4rem 0;
  margin: 3rem 0;
}
.global-center__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.global-center__media {
  margin: 0;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 380px;
}
.global-center__media img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 420px;
}
.global-center__media figcaption {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.45);
}
.global-center__body .section__eyebrow {
  color: #b39a76;
}
.global-center__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.1;
  margin: .25rem 0 1rem;
  color: #f3ede1;
  letter-spacing: -0.01em;
}
.global-center__lede {
  color: rgba(243, 237, 225, 0.82);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 760px) {
  .global-center__grid { grid-template-columns: 1fr; gap: 2rem; }
  .global-center__title { font-size: 1.85rem; }
  .global-center { padding: 2.75rem 0; }
}

/* ---------- Watch / YouTube CTA ---------- */
.watch-cta {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.watch-cta__inner {
  background: var(--paper-alt);
  border-left: 4px solid var(--accent);
  padding: 2rem 2.25rem;
}
.watch-cta__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.15;
  margin: .25rem 0 .75rem;
  color: var(--ink);
}
.watch-cta__lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 60ch;
}
.watch-cta__action { margin: 0; }
.watch-cta__inner--with-logo {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.watch-cta__logo {
  flex: 0 0 140px;
  display: block;
}
.watch-cta__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.watch-cta__body { flex: 1 1 auto; min-width: 0; }
@media (max-width: 700px) {
  .watch-cta__inner--with-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .watch-cta__logo { flex: 0 0 auto; max-width: 110px; }
}

/* ---------- Button ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: .85rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: background .15s, color .15s, border-color .15s;
}
.btn:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: var(--paper);
}
.btn--lg {
  font-size: .98rem;
  padding: 1.1rem 1.9rem;
  letter-spacing: .15em;
}

/* ---------- "Buy the Books" larger CTA variant ---------- */
.watch-cta__inner--bigger {
  padding: 2.75rem 2.5rem;
  border-left-width: 6px;
}
.watch-cta__title--xl {
  font-size: 2.6rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
@media (max-width: 700px) {
  .watch-cta__title--xl { font-size: 2rem; }
  .watch-cta__inner--bigger { padding: 2rem 1.5rem; }
}

/* ---------- Globalvision section (about) ---------- */
.globalvision {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.globalvision__logo {
  margin: 0 auto 2rem;
  max-width: 240px;
}
.globalvision__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.globalvision__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.15;
  margin: .25rem 0 1.25rem;
  color: var(--ink);
}
.globalvision__lede {
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0 auto 1.75rem;
  max-width: 62ch;
  text-align: left;
}
.globalvision__action { margin: 0; }
.globalvision__photo {
  margin: 3rem auto 0;
  max-width: 460px;
}
.globalvision__photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.globalvision__photo figcaption {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .85rem;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .globalvision__logo { max-width: 180px; }
  .globalvision__title { font-size: 1.85rem; }
  .globalvision__lede { font-size: 1rem; }
  .globalvision__photo { margin-top: 2.25rem; }
}

/* ---------- Testimonials ---------- */
.testimonial {
  margin: 0 0 2rem;
  padding: 0;
}
.testimonial blockquote {
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}
.testimonial blockquote p {
  margin: 0 0 .9rem;
}
.testimonial blockquote p:last-child { margin-bottom: 0; }
.testimonial figcaption {
  margin: .9rem 0 0 1.5rem;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.testimonial__name {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.testimonial__role {
  font-size: .78rem;
  color: var(--muted);
}
.testimonial--feature blockquote {
  font-size: 1.18rem;
  line-height: 1.75;
  border-left-width: 4px;
  padding-left: 1.75rem;
}
.testimonials-block {
  border-top: 1px solid var(--rule);
}
.testimonials-block__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  margin: .25rem 0 2rem;
  color: var(--ink);
}
.testimonials-list .testimonial + .testimonial {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px dotted var(--rule);
}
@media (max-width: 760px) {
  .testimonial blockquote { font-size: 1rem; padding-left: 1.1rem; }
  .testimonial--feature blockquote { font-size: 1.05rem; padding-left: 1.25rem; }
  .testimonials-block__title { font-size: 1.55rem; }
  .testimonial figcaption { margin-left: 1.1rem; }
}

/* ---------- Press gallery (globalvision) ---------- */
.press-gallery {
  border-top: 1px solid var(--rule);
}
.press-gallery__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  margin: .25rem 0 2rem;
  color: var(--ink);
}
.press-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.press-gallery__item {
  margin: 0;
}
.press-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.press-gallery__item figcaption {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: .8rem;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .press-gallery__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .press-gallery__title { font-size: 1.65rem; }
}

/* ---------- Clients (globalvision) ---------- */
.clients {
  border-top: 1px solid var(--rule);
}
.clients__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  margin: .25rem 0 2rem;
  color: var(--ink);
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}
.clients__heading {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--rule);
}
.clients__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
  columns: 1;
}
.clients__list li {
  padding: .35rem 0;
  border-bottom: 1px dotted var(--rule);
}
.clients__list li:last-child { border-bottom: 0; }
.clients__list sup {
  color: var(--accent);
  font-size: .7em;
  margin-left: .15em;
}
.clients__footnote {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 1.25rem 0 0;
}
.clients__footnote sup {
  color: var(--accent);
  margin-right: .25em;
}
@media (max-width: 760px) {
  .clients__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .clients__title { font-size: 1.65rem; }
  .clients__list { font-size: .96rem; }
}

/* ---------- Utility ---------- */
.rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 2.5rem 0;
}
.center { text-align: center; }
.small { font-size: .9rem; }
