/* ============================================================
   CHURCHILL — O LEÃO DA LIBERDADE
   Design: Editorial / War Documentary — Dark, Dramatic, Historic
   ============================================================ */

:root {
  --gold:        #c9a44a;
  --gold-light:  #e8c96a;
  --gold-dark:   #8a6e2a;
  --black:       #0a0a0a;
  --dark:        #121212;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --mid:         #333333;
  --muted:       #888888;
  --light:       #e8e0d0;
  --white:       #f5f0e8;
  --red:         #8b1a1a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-caps:    'Oswald', sans-serif;

  --spacing-section: clamp(80px, 10vw, 140px);
  --max-width: 1300px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- TYPOGRAPHY ---- */
.section__label {
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-caps);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 164, 74, .4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--hero {
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  padding: 18px 48px;
  margin-top: 8px;
}
.btn--hero:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 164, 74, .5);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  background: transparent;
  transition: background .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,164,74,.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: auto;
}
.nav__logo {
  font-family: var(--font-caps);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__crown { font-size: 22px; }
.nav__links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 2px;
}
.nav__cta:hover { background: var(--gold-light) !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: .3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(201,164,74,.2);
  padding: 24px 32px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.nav__mobile a {
  font-family: var(--font-caps);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(40%) contrast(1.1);
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,.95) 0%,
    rgba(10,10,10,.75) 50%,
    rgba(10,10,10,.3) 100%
  ),
  linear-gradient(
    to top,
    rgba(10,10,10,1) 0%,
    transparent 60%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: auto;
  padding: 0 40px;
  padding-top: 100px;
}
.hero__label {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero__title--thin {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}
.hero__title--bold {
  font-size: clamp(54px, 9vw, 140px);
  font-weight: 900;
  color: var(--gold);
  margin-top: -12px;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero__desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(232, 224, 208, .8);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hero__desc strong { color: var(--gold); }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}
.dot { color: var(--gold); }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%     { transform: scaleY(1); opacity: 1; }
}
.hero__scroll p {
  font-family: var(--font-caps);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  writing-mode: vertical-lr;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--gold);
  padding: 28px 40px;
  text-align: center;
  overflow: hidden;
}
.strip__quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 24px);
  font-style: italic;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.strip__quote span {
  font-family: var(--font-caps);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 2px;
  opacity: .7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--spacing-section) 40px;
  max-width: var(--max-width);
  margin: auto;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text p {
  color: rgba(232, 224, 208, .85);
  margin-bottom: 20px;
  font-size: clamp(15px, 1.1vw, 18px);
}
.about__image {
  position: relative;
}
.about__image img {
  width: 100%;
  border: 1px solid rgba(201,164,74,.3);
  filter: sepia(20%);
  transition: filter .4s;
}
.about__image:hover img { filter: sepia(0); }
.about__image::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid rgba(201,164,74,.25);
  z-index: -1;
}
.about__image-caption {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,164,74,.2);
  border-bottom: 1px solid rgba(201,164,74,.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 60px 40px;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 60px;
}
.stats__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stats__label {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}
.stats__divider {
  width: 1px;
  height: 80px;
  background: rgba(201,164,74,.2);
}

/* ============================================================
   CHAPTERS
   ============================================================ */
.chapters {
  padding: var(--spacing-section) 40px;
  max-width: var(--max-width);
  margin: auto;
}
.chapters__header {
  text-align: center;
  margin-bottom: 60px;
}
.chapters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.chapter {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.chapter:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border-color: rgba(201,164,74,.4);
}
.chapter--featured {
  grid-column: span 2;
  flex-direction: row;
}
.chapter--featured .chapter__img-wrap {
  width: 45%;
  flex-shrink: 0;
}
.chapter--featured .chapter__content { padding: 40px; }
.chapter--highlight {
  border-color: rgba(201,164,74,.4);
  background: linear-gradient(135deg, var(--dark-2) 60%, rgba(201,164,74,.06));
}
.chapter__number {
  position: absolute;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(201,164,74,.06);
  line-height: 1;
  right: 16px;
  bottom: 80px;
  pointer-events: none;
}
.chapter {
  position: relative;
}
.chapter__img-wrap {
  overflow: hidden;
  height: 220px;
}
.chapter__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(10%);
  transition: transform .5s, filter .3s;
}
.chapter:hover .chapter__img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.chapter__content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chapter__tag {
  font-family: var(--font-caps);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}
.chapter__tag--gold {
  color: var(--gold);
  font-weight: 600;
}
.chapter__content h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.chapter__content p {
  font-size: 14px;
  color: rgba(232,224,208,.7);
  line-height: 1.6;
  flex: 1;
}
.chapter__duration {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-top: auto;
}

/* ============================================================
   NARRATOR
   ============================================================ */
.narrator {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,164,74,.15);
  border-bottom: 1px solid rgba(201,164,74,.15);
  padding: var(--spacing-section) 40px;
}
.narrator__inner {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.narrator__image {
  position: relative;
}
.narrator__image img {
  width: 100%;
  border: 1px solid rgba(201,164,74,.3);
  filter: sepia(15%);
}
.narrator__badge {
  position: absolute;
  top: 20px; left: -12px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 8px 16px;
}
.narrator__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.narrator__role {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.narrator__quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-style: italic;
  color: var(--light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.narrator__bio p {
  font-size: 15px;
  color: rgba(232,224,208,.8);
  margin-bottom: 16px;
}
.narrator__achiev {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.narrator__achiev-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.narrator__achiev-item span {
  font-size: 24px;
}
.narrator__achiev-item p {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  padding: var(--spacing-section) 40px;
  max-width: var(--max-width);
  margin: auto;
}
.timeline__header {
  text-align: center;
  margin-bottom: 60px;
}
.timeline__track {
  position: relative;
  padding-left: 48px;
}
.timeline__track::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 6px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    var(--gold-dark) 10%,
    var(--gold-dark) 90%,
    transparent
  );
}
.timeline__item {
  position: relative;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.timeline__dot {
  position: absolute;
  left: -44px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  background: var(--black);
  transition: all .3s;
}
.timeline__dot--gold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,164,74,.6);
  width: 16px; height: 16px;
  left: -46px;
}
.timeline__item:hover .timeline__dot {
  background: var(--gold);
  border-color: var(--gold);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.timeline__event h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline__event p {
  font-size: 14px;
  color: rgba(232,224,208,.7);
  line-height: 1.6;
}
.timeline__item--major .timeline__year { font-size: 28px; }
.timeline__item--major .timeline__event h4 { font-size: 22px; color: var(--gold); }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes {
  background: var(--dark-2);
  padding: var(--spacing-section) 40px;
  border-top: 1px solid rgba(201,164,74,.15);
}
.quotes__header {
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}
.quotes__grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 36px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.quote-card:hover {
  border-color: rgba(201,164,74,.4);
  transform: translateY(-4px);
}
.quote-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(201,164,74,.08), rgba(201,164,74,.03));
  border-color: rgba(201,164,74,.25);
}
.quote-card--dark {
  background: var(--dark-3);
}
.quote-card__mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .7;
  color: var(--gold);
  opacity: .3;
  margin-bottom: 16px;
  font-weight: 900;
}
.quote-card p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  font-style: italic;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.quote-card span {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--spacing-section) 40px;
  max-width: var(--max-width);
  margin: auto;
}
.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.06);
}
.gallery__item--1 { grid-column: span 2; grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) sepia(15%);
  transition: transform .5s, filter .4s;
  min-height: 200px;
}
.gallery__item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) sepia(0%);
}
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
  padding: 20px 16px 14px;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  transform: translateY(100%);
  transition: transform .3s;
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,164,74,.3);
  padding: var(--spacing-section) 40px;
  text-align: center;
}
.cta__inner {
  max-width: 860px;
  margin: auto;
}
.cta__badge {
  display: inline-block;
  background: rgba(201,164,74,.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 4px;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .65; }
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta__desc {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(232,224,208,.75);
  margin-bottom: 48px;
  line-height: 1.7;
}
.cta__features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta__feature span { font-size: 28px; }
.cta__feature p {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.cta__small {
  margin-top: 16px;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,164,74,.15);
  padding: 60px 40px 40px;
  text-align: center;
}
.footer__inner { max-width: var(--max-width); margin: auto; }
.footer__logo {
  font-family: var(--font-caps);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 28px 0 20px;
}
.footer__links a {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(136,136,136,.5);
}
.footer__wiki {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(136,136,136,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__inner      { grid-template-columns: 1fr; }
  .narrator__inner   { grid-template-columns: 1fr; }
  .narrator__image   { max-width: 360px; }
  .chapter--featured { flex-direction: column; grid-column: span 1; }
  .chapter--featured .chapter__img-wrap { width: 100%; }
  .quotes__grid      { grid-template-columns: repeat(2, 1fr); }
  .quote-card--large { grid-column: span 2; }
  .gallery__grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--1  { grid-column: span 1; grid-row: span 1; }
  .stats__divider    { display: none; }
  .stats__item       { padding: 16px 32px; }
}
@media (max-width: 768px) {
  .nav__links        { display: none; }
  .nav__hamburger    { display: flex; }
  .quotes__grid      { grid-template-columns: 1fr; }
  .quote-card--large { grid-column: span 1; }
  .gallery__grid     { grid-template-columns: 1fr 1fr; }
  .chapters__grid    { grid-template-columns: 1fr; }
  .narrator__achiev  { grid-template-columns: 1fr; }
  .timeline__item    { grid-template-columns: 60px 1fr; gap: 12px; }
  .cta__features     { gap: 24px; }
  .hero__content     { padding: 100px 24px 0; }
  .about, .narrator, .chapters, .timeline, .gallery, .quotes { padding-left: 24px; padding-right: 24px; }
  .stats { padding: 40px 24px; }
}
