:root {
  --ink: #171717;
  --ivory: #F3EFE7;
  --stone: #B7AA9A;
  --oxblood: #762D3D;
  --white: #FBF9F4;
  --line: rgba(23, 23, 23, .18);
  --shadow: 0 24px 60px rgba(23, 23, 23, .12);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--oxblood); color: var(--white); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  height: var(--header-h);
  padding: 0 clamp(22px, 3.2vw, 58px);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: rgba(23,23,23,.12);
  box-shadow: 0 8px 30px rgba(23,23,23,.05);
}
.wordmark { text-decoration: none; display: inline-flex; align-items: baseline; gap: 10px; width: max-content; }
.wordmark-the { font-size: 9px; letter-spacing: .34em; font-weight: 600; }
.wordmark-name { font-family: var(--serif); font-size: 23px; letter-spacing: .02em; }
.wordmark-name em { font-weight: 400; }
.wordmark-mark { display: inline-block; width: 3px; height: 22px; margin-left: 7px; background: var(--oxblood); vertical-align: -4px; }
.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a, .search-button {
  border: 0;
  background: none;
  padding: 8px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
  position: relative;
}
.desktop-nav a::after, .search-button::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--oxblood);
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .search-button:hover::after { right: 0; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.join-button {
  text-decoration: none;
  background: var(--oxblood);
  color: var(--white);
  padding: 13px 17px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-button { display: none; border: 0; background: none; text-transform: uppercase; font-size: 10px; letter-spacing: .14em; }
.mobile-menu { display: none; }

.cover-shell { padding: 8px 8px 0; }
.cover-grid {
  max-width: 1900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3.25fr) minmax(260px, 1fr);
  gap: 8px;
  height: min(78vh, 900px);
  min-height: 650px;
}
.hero-card { position: relative; height: 100%; overflow: hidden; background: #d8d2c8; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-poster, .hero-video {
  position: absolute; inset: 0;
  height: 100%; width: 100%; object-fit: cover;
  object-position: center;
}
.hero-video { opacity: 1; transition: opacity .9s ease; }
.hero-video.is-fading { opacity: 0; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(243,239,231,.12) 0%, rgba(243,239,231,.05) 42%, rgba(23,23,23,.03) 100%);
}
.hero-copy {
  position: absolute;
  left: clamp(34px, 4.2vw, 72px);
  top: 50%;
  transform: translateY(-48%);
  width: min(36%, 520px);
  z-index: 3;
}
.kicker {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.kicker-ox { color: var(--oxblood); }
.kicker-light { color: rgba(255,255,255,.78); }
.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 4.15vw, 76px);
  line-height: .93;
  letter-spacing: -.035em;
  font-weight: 400;
}
.hero-copy h1 span { display: block; white-space: nowrap; }
.hero-deck { margin: 28px 0 22px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.hero-note {
  position: absolute;
  left: clamp(34px, 5vw, 86px);
  bottom: 28px;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  z-index: 3;
}
.editorial-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
}
.editorial-link span { transition: transform .2s ease; }
.editorial-link:hover span { transform: translateX(5px); }
.editorial-link-light { color: var(--white); }
.editorial-link-dark { color: var(--ink); }
.cover-rail { display: grid; grid-template-rows: repeat(3, 1fr); gap: 8px; }
.rail-card { position: relative; overflow: hidden; text-decoration: none; color: var(--white); min-height: 0; }
.rail-card img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.25,1); }
.rail-card:hover img { transform: scale(1.035); }
.rail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04) 20%, rgba(0,0,0,.72) 100%); }
.rail-content { position: absolute; left: 20px; right: 20px; bottom: 20px; display: grid; gap: 8px; }
.rail-content small { text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.rail-content strong { font-family: var(--serif); font-size: clamp(20px, 1.65vw, 30px); line-height: 1; font-weight: 400; }
.rail-content > span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }

.opening-statement {
  max-width: 1700px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 140px) clamp(24px, 4vw, 76px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8vw;
  border-bottom: 1px solid var(--line);
}
.statement-label { margin: 0; color: var(--oxblood); font-family: var(--serif); font-size: clamp(30px, 3vw, 52px); font-style: italic; }
.statement-copy p { margin: 0; max-width: 900px; font-family: var(--serif); font-size: clamp(34px, 4vw, 66px); line-height: 1.02; letter-spacing: -.025em; }
.statement-copy .statement-em { margin-top: 28px; font-family: var(--sans); font-size: 13px; line-height: 1.7; letter-spacing: .05em; text-transform: uppercase; max-width: 720px; }

.section-wrap { max-width: 1700px; margin: 0 auto; padding: clamp(82px, 8vw, 140px) clamp(24px, 4vw, 76px); }
.section-intro { display: grid; grid-template-columns: 1fr 2fr; align-items: end; gap: 8vw; margin-bottom: 46px; }
.section-intro h2, .edit-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.035em;
}
.chapter-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.chapter-card { position: relative; min-height: clamp(380px, 36vw, 620px); overflow: hidden; color: var(--white); text-decoration: none; }
.chapter-card img { height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.65,.25,1); }
.chapter-card:hover img { transform: scale(1.025); }
.chapter-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.74) 100%); }
.chapter-copy { position: absolute; left: 30px; right: 30px; bottom: 28px; display: grid; gap: 10px; }
.chapter-copy small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.chapter-copy strong { font-family: var(--serif); font-size: clamp(30px, 3vw, 54px); line-height: .96; font-weight: 400; max-width: 680px; }
.chapter-copy > span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-top: 6px; }

.current-edit { padding-top: 20px; }
.feature-film { height: clamp(590px, 66vw, 920px); position: relative; overflow: hidden; background: var(--ink); }
.film-poster, .cinema-video { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.cinema-video { opacity: 0; transition: opacity .75s ease; }
.cinema-video.is-playing { opacity: 1; }
.feature-gradient { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.66) 0%, rgba(8,8,8,.35) 34%, rgba(8,8,8,.02) 68%); }
.feature-copy { position: absolute; left: clamp(34px, 5vw, 86px); top: 50%; transform: translateY(-50%); width: min(39%, 560px); color: var(--white); }
.feature-copy h2, .pillar-copy h2, .about-copy h2, .weekly h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.2vw, 88px);
  line-height: .92;
  letter-spacing: -.035em;
  font-weight: 400;
}
.feature-copy p:not(.kicker) { font-size: 15px; line-height: 1.65; margin: 24px 0 30px; max-width: 480px; }

.edit-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.filter-row { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.filter { border: 1px solid var(--line); background: transparent; padding: 10px 14px; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.filter.is-active, .filter:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.story-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; align-items: stretch; }
.story-card, .quick-card, .note-card { background: var(--white); border: 1px solid rgba(23,23,23,.08); }
.story-card { grid-column: span 4; }
.story-card-feature { grid-column: span 5; }
.story-card-wide { grid-column: span 5; }
.story-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story-card-feature img { aspect-ratio: 5/4; }
.story-card-wide img { aspect-ratio: 5/4; }
.story-card-body { padding: 24px 24px 28px; }
.story-meta { margin: 0 0 12px; color: var(--oxblood); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.story-card h3, .note-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 2.5vw, 42px); line-height: 1; font-weight: 400; }
.story-card p:not(.story-meta) { margin: 14px 0 20px; font-size: 13px; line-height: 1.6; }
.story-card a, .story-soon { color: inherit; border: 0; background: none; padding: 0 0 5px; border-bottom: 1px solid var(--ink); text-decoration: none; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.quick-card { grid-column: span 3; background: var(--ink); color: var(--white); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; min-height: 430px; }
.quick-card blockquote { margin: 34px 0; font-family: var(--serif); font-size: clamp(34px, 3vw, 52px); line-height: .98; }
.quick-card > span { text-transform: uppercase; letter-spacing: .16em; font-size: 9px; color: var(--stone); }
.note-card { grid-column: span 4; background: var(--ivory); padding: 34px; display: flex; flex-direction: column; justify-content: center; min-height: 360px; }
.note-card p:last-child { margin: 20px 0 0; font-size: 13px; line-height: 1.6; max-width: 360px; }
.story-card.is-hidden, .quick-card.is-hidden, .note-card.is-hidden { display: none; }

.pillar-film { padding-top: 30px; padding-bottom: 30px; }
.pillar-film-grid { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.55fr); min-height: 650px; background: var(--white); }
.pillar-film-reverse { grid-template-columns: minmax(0, 1.55fr) minmax(320px, .8fr); }
.pillar-copy { padding: clamp(42px, 5vw, 84px); display: flex; flex-direction: column; justify-content: center; }
.pillar-copy-ink { background: var(--ink); color: var(--white); }
.pillar-copy-ink .editorial-link { color: var(--white); }
.pillar-copy-ivory { background: var(--white); color: var(--ink); }
.pillar-copy h2 { font-size: clamp(46px, 4.3vw, 76px); }
.pillar-copy p:not(.kicker) { margin: 24px 0 30px; font-size: 14px; line-height: 1.7; max-width: 480px; }
.pillar-media { position: relative; overflow: hidden; min-height: 500px; }

.about-section { padding-top: 70px; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(380px, .8fr); min-height: 720px; }
.about-media { position: relative; overflow: hidden; background: var(--ink); }
.about-copy { background: var(--white); padding: clamp(46px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 em { color: var(--oxblood); font-weight: 400; }
.about-lead { font-family: var(--serif); font-size: clamp(24px, 2vw, 34px) !important; line-height: 1.1 !important; }
.about-copy p:not(.kicker) { font-size: 14px; line-height: 1.7; margin: 22px 0 0; }
.about-copy .editorial-link { margin-top: 34px; align-self: flex-start; }

.weekly { background: var(--oxblood); color: var(--white); margin-top: clamp(80px, 8vw, 140px); }
.weekly-inner { max-width: 1700px; margin: 0 auto; padding: clamp(76px, 8vw, 140px) clamp(24px, 4vw, 76px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 10vw; align-items: center; }
.weekly h2 { font-size: clamp(58px, 6vw, 100px); }
.weekly-copy > p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.1vw, 34px); line-height: 1.1; }
.weekly-copy .weekly-small { margin-top: 16px; font-family: var(--sans); font-size: 11px; line-height: 1.5; letter-spacing: .05em; text-transform: uppercase; opacity: .75; }
.newsletter { margin-top: 32px; display: flex; border-bottom: 1px solid rgba(255,255,255,.55); }
.newsletter input { flex: 1; min-width: 0; color: var(--white); border: 0; background: transparent; padding: 14px 0; outline: none; }
.newsletter input::placeholder { color: rgba(255,255,255,.68); }
.newsletter button { border: 0; background: transparent; color: var(--white); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; padding: 14px 0 14px 20px; }
.newsletter-status { margin-top: 14px !important; font-family: var(--sans) !important; font-size: 11px !important; min-height: 18px; opacity: .8; }

.site-footer { background: var(--ink); color: var(--ivory); padding: 52px clamp(24px, 4vw, 76px) 28px; }
.footer-top, .footer-bottom { max-width: 1700px; margin: 0 auto; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-top { padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-wordmark { font-family: var(--serif); font-size: clamp(30px, 3vw, 50px); text-decoration: none; }
.footer-top p { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.footer-bottom { padding-top: 26px; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.68); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--white); }

.search-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(23,23,23,.78); backdrop-filter: blur(9px); display: none; padding: 30px; }
.search-overlay.is-open { display: flex; align-items: flex-start; justify-content: center; }
.search-panel { margin-top: 8vh; width: min(880px, 100%); background: var(--ivory); padding: clamp(34px, 5vw, 72px); position: relative; box-shadow: var(--shadow); }
.search-close { position: absolute; top: 22px; right: 22px; border: 0; background: none; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.search-panel h2 { margin: 0 0 34px; font-family: var(--serif); font-weight: 400; font-size: clamp(46px, 6vw, 78px); line-height: .95; }
.search-panel input { width: 100%; border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding: 14px 0; outline: none; font-family: var(--serif); font-size: 28px; }
.search-results { margin-top: 30px; display: grid; gap: 8px; }
.search-result { padding: 15px 0; border-bottom: 1px solid var(--line); }
.search-result small { color: var(--oxblood); text-transform: uppercase; letter-spacing: .14em; font-size: 8px; }
.search-result strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 24px; font-weight: 400; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 110; background: var(--ink); color: var(--white); padding: 12px 18px; font-size: 11px; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; box-shadow: var(--shadow); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .cover-grid { grid-template-columns: minmax(0, 2.4fr) minmax(230px, .8fr); }
  .story-card { grid-column: span 6; }
  .story-card-feature, .story-card-wide { grid-column: span 6; }
  .quick-card { grid-column: span 6; }
  .note-card { grid-column: span 6; }
  .pillar-film-grid, .pillar-film-reverse { grid-template-columns: 1fr 1.4fr; }
  .mobile-menu {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 49;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 20px 28px 30px; grid-template-columns: repeat(2, 1fr); gap: 0;
  }
  .mobile-menu.is-open { display: grid; }
  .mobile-menu a { text-decoration: none; padding: 17px 0; border-bottom: 1px solid var(--line); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .site-header { padding: 0 20px; }
  .wordmark-name { font-size: 19px; }
  .wordmark-the, .join-button, .search-button { display: none; }
  .cover-shell { padding: 0; }
  .cover-grid { display: block; height: auto; min-height: 0; }

  /* Mobile hero stays cinematic: moving film with an integrated editorial overlay. */
  .hero-card { position: relative; height: min(78svh, 720px); min-height: 560px; display: block; background: #d8d2c8; overflow: hidden; }
  .hero-media { position: absolute; inset: 0; aspect-ratio: auto; background: #d8d2c8; }
  .hero-poster, .hero-video {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% center;
  }
  .hero-scrim {
    display: block;
    background: linear-gradient(180deg, rgba(23,23,23,.02) 0%, rgba(23,23,23,.05) 44%, rgba(23,23,23,.76) 73%, rgba(23,23,23,.9) 100%);
  }
  .hero-copy {
    position: absolute;
    left: 0; right: 0; top: auto; bottom: 78px; transform: none;
    width: auto;
    padding: 0 24px;
    color: var(--white);
    background: transparent;
    z-index: 3;
  }
  .hero-copy .kicker { color: rgba(255,255,255,.82); margin-bottom: 10px; }
  .hero-copy h1 { font-size: clamp(42px, 10.8vw, 58px); line-height: .93; letter-spacing: -.035em; max-width: 650px; }
  .hero-copy h1 span { display: inline; white-space: normal; }
  .hero-copy h1 span:nth-child(2)::after { content: " "; }
  .hero-copy h1 span:nth-child(1)::after,
  .hero-copy h1 span:nth-child(3)::after { content: " "; }
  .hero-deck { margin: 16px 0 15px; font-size: 9px; line-height: 1.5; color: rgba(255,255,255,.86); }
  .editorial-link-dark { color: var(--white); }
  .hero-note {
    position: absolute; left: 24px; right: 24px; bottom: 20px;
    margin: 0; padding: 0;
    color: rgba(255,255,255,.92); background: transparent; font-size: 14px;
    z-index: 3;
  }

  .cover-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; grid-template-rows: 290px; overflow-x: auto; gap: 8px; padding: 8px; scroll-snap-type: x mandatory; }
  .rail-card { scroll-snap-align: start; }
  .opening-statement, .section-intro { grid-template-columns: 1fr; gap: 34px; }
  .opening-statement { padding-top: 72px; padding-bottom: 72px; }
  .statement-copy p { font-size: clamp(38px, 11vw, 58px); }
  .section-wrap { padding: 76px 20px; }
  .chapter-grid { grid-template-columns: 1fr; }

  /* Art-directed mobile crops: preserve each person instead of using one generic crop. */
  .chapter-card { min-height: 0; aspect-ratio: 4 / 5; }
  .chapter-card img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
  #fashion img { object-position: 78% center; }
  #health img { object-position: 22% center; }
  #lifestyle img { object-position: 26% center; }
  #career img { object-position: 23% center; }
  .chapter-copy { left: 26px; right: 26px; bottom: 26px; }
  .chapter-copy strong { font-size: clamp(38px, 8.8vw, 52px); line-height: .98; }
  .feature-film { height: 670px; }
  .feature-film .film-poster, .feature-film .cinema-video { object-position: 66% center; }
  .feature-gradient { background: linear-gradient(180deg, rgba(8,8,8,.05) 25%, rgba(8,8,8,.76) 100%); }
  .feature-copy { left: 24px; right: 24px; top: auto; bottom: 34px; transform: none; width: auto; }
  .feature-copy h2 { font-size: clamp(54px, 14vw, 76px); }
  .edit-heading { align-items: flex-start; flex-direction: column; }
  .filter-row { justify-content: flex-start; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card, .story-card-feature, .story-card-wide, .quick-card, .note-card { grid-column: 1; }
  .quick-card { min-height: 360px; }
  .pillar-film-grid, .pillar-film-reverse { grid-template-columns: 1fr; }
  .pillar-film-reverse .pillar-media { order: 1; }
  .pillar-film-reverse .pillar-copy { order: 2; }
  .pillar-copy { padding: 52px 26px; }
  .pillar-media { min-height: 420px; }

  /* Mobile film crops are art-directed per character. These values pull the
     16:9 source frames left so the talent sits comfortably near centre in the
     tall mobile viewport instead of being clipped at the edge. */
  .pillar-film-health .pillar-media .film-poster,
  .pillar-film-health .pillar-media .cinema-video { object-position: 14% center; }
  .pillar-film-lifestyle .pillar-media .film-poster,
  .pillar-film-lifestyle .pillar-media .cinema-video { object-position: 18% center; }
  .pillar-film-career .pillar-media .film-poster,
  .pillar-film-career .pillar-media .cinema-video { object-position: 14% center; }
  .about-grid { grid-template-columns: 1fr; min-height: 0; }
  .about-media { min-height: 520px; }
  .about-copy { padding: 56px 26px; }
  .weekly-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-video, .cinema-video { display: none; }
  .chapter-card img, .rail-card img { transition: none; }
}


/* v2.7 — Brevo official HTML/Ajax engine with Ongoing Edit visual skin.
   Brevo's external JS owns validation/submission/success; our CSS owns appearance. */
.newsletter-brevo {
  margin-top: 32px;
  padding: 0;
  background: transparent;
  text-align: left;
}
.newsletter-brevo .sib-form-container,
.newsletter-brevo .newsletter-sib-container {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: left;
}
.newsletter-brevo .newsletter-brevo-form { margin: 0; }
.newsletter-brevo .newsletter-main-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.55);
}
.newsletter-brevo .newsletter-input-block {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}
.newsletter-brevo .form__entry,
.newsletter-brevo .form__label-row,
.newsletter-brevo .entry__field {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.newsletter-brevo .entry__field { box-shadow: none; }
.newsletter-brevo .newsletter-email {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 14px 0;
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  box-shadow: none;
}
.newsletter-brevo .newsletter-email::placeholder { color: rgba(255,255,255,.68); opacity: 1; }
.newsletter-brevo .newsletter-button-block { flex: 0 0 auto; padding: 0; }
.newsletter-brevo .newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
}
.newsletter-brevo .newsletter-submit:hover { opacity: .76; }
.newsletter-brevo .sib-hide-loader-icon { display: none; width: 12px; height: 12px; fill: currentColor; }
.newsletter-brevo .sib-form-block__button-with-loader .sib-hide-loader-icon.sib-loader-icon { display: block; }

/* Native consent checkbox only. The Brevo decorative span is intentionally hidden. */
.newsletter-brevo .newsletter-consent-block { margin-top: 18px; padding: 0; }
.newsletter-brevo .entry__choice { margin: 0; padding: 0; }
.newsletter-brevo .newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,.92);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}
.newsletter-brevo .newsletter-checkbox {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  position: static !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  flex: 0 0 16px !important;
  pointer-events: auto !important;
  accent-color: #171717;
}
.newsletter-brevo .newsletter-consent .checkbox { display: none !important; }
.newsletter-brevo .newsletter-consent-copy { display: block; flex: 1 1 auto; min-width: 0; margin: 0; padding: 0; }
.newsletter-brevo .newsletter-consent-copy p { margin: 0; }

.newsletter-brevo .newsletter-declaration-wrap { margin: 12px 0 0; padding: 0; }
.newsletter-brevo .declaration-block-icon { display: none; }
.newsletter-brevo .newsletter-declaration {
  margin: 0;
  max-width: 660px;
  color: rgba(255,255,255,.62);
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1.55;
}
.newsletter-brevo .newsletter-declaration p { margin: 0; }
.newsletter-brevo .newsletter-declaration a { color: inherit; text-underline-offset: 2px; }

.newsletter-brevo .entry__error {
  display: block;
  margin: 6px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.96);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.4;
}
.newsletter-brevo .entry__error:empty { display: none; }
.newsletter-brevo .entry__specification { display: none; }
.newsletter-brevo .entry__label { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

/* These are shown by Brevo main.js only after a real server result. */
.newsletter-brevo .sib-form-message-panel {
  display: none;
  margin: 0 0 16px;
  padding: 11px 0;
  max-width: none;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.96);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
}
.newsletter-brevo .sib-form-message-panel--active { display: block; }
.newsletter-brevo .sib-form-message-panel__text { padding: 0; }
.newsletter-brevo .sib-notification__icon { display: none; }
.newsletter-brevo .newsletter-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 640px) {
  .newsletter-brevo { margin-top: 28px; }
  .newsletter-brevo .newsletter-main-row { gap: 12px; }
  .newsletter-brevo .newsletter-email { font-size: 13px; }
  .newsletter-brevo .newsletter-consent { gap: 9px; font-size: 10px; }
  .newsletter-brevo .newsletter-declaration { font-size: 8px; }
  .newsletter-brevo .sib-form-message-panel { font-size: 10px; }
}
