/* =========================================
   TOKENS
   ========================================= */
:root {
  --ink:        #0C0A09;
  --ink-2:      #1C1917;
  --ink-3:      #292524;
  --stone:      #44403C;
  --stone-2:    #78716C;
  --stone-3:    #A8A29E;
  --cream:      #FAFAF9;
  --cream-2:    #F5F5F4;
  --gold:       #CA8A04;
  --gold-lt:    #FEF08A;
  --gold-dim:   rgba(202,138,4,0.15);
  --rose:       #9F1239;
  --rose-lt:    #FDA4AF;
  --white:      #FFFFFF;

  /* glass surface */
  --glass:      rgba(255,255,255,0.04);
  --glass-b:    rgba(255,255,255,0.08);
  --border:     rgba(255,255,255,0.08);
  --border-str: rgba(255,255,255,0.14);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; }
strong { font-weight: 600; }

/* =========================================
   LAYOUT HELPERS
   ========================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================
   TYPOGRAPHY TOKENS
   ========================================= */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--stone-3);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 4rem;
}
.chapter-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.chapter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.chapter-title.white { color: var(--white); }

/* =========================================
   NAV
   ========================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
}
#nav.scrolled {
  background: rgba(12,10,9,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}
.nav-progress-wrap {
  flex: 1;
  height: 1px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
#nav-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose-lt));
  transition: width 0.1s linear;
}
.nav-date {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--stone-2);
  flex-shrink: 0;
}

/* =========================================
   HERO
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 50%, rgba(159,18,57,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(202,138,4,0.08) 0%, transparent 60%),
    var(--ink);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 860px;
}
.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero-title em {
  color: var(--rose-lt);
  font-style: italic;
}
.hero-name {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-3);
  margin-bottom: 3.5rem;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--rose), #7F1D1D);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(159,18,57,0.4);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(159,18,57,0.55);
}
.btn-hero svg { transition: transform 0.3s var(--ease); }
.btn-hero:hover svg { transform: translateY(3px); }
.hero-scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: lineGrow 2.4s ease-in-out infinite;
}
@keyframes lineGrow {
  0%,100% { opacity: 0; transform: translateX(-50%) scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); transform-origin: top; }
}

/* =========================================
   COUNTER
   ========================================= */
#counter {
  padding: 8rem 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.counter-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}
.counter-card:hover {
  border-color: var(--border-str);
  transform: translateY(-4px);
}
.counter-card.accent {
  border-color: rgba(202,138,4,0.2);
  background: var(--gold-dim);
}
.counter-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counter-card.accent .counter-num { color: var(--gold-lt); }
.counter-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
}

/* =========================================
   CHAPTERS INTRO
   ========================================= */
#chapters-intro {
  padding: 8rem 0 2rem;
}

/* =========================================
   CHAPTER — standard
   ========================================= */
.chapter {
  padding: 6rem 0;
}
.chapter-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.chapter-text-left .chapter-media { order: -1; }
.chapter-text-right .chapter-copy { order: -1; }

.chapter-copy p {
  font-size: 1.05rem;
  color: var(--stone-3);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.chapter-copy p:last-child { margin-bottom: 0; }
.chapter-copy em { color: var(--cream-2); font-style: italic; }

/* =========================================
   IMAGE LOADING — shimmer + fade-in
   ========================================= */

/* Shimmer: animação de fundo enquanto a imagem carrega */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

/* Container em estado de carregamento */
.media-frame.img-loading,
.pillar.img-loading,
.gallery-item.img-loading {
  background: linear-gradient(
    90deg,
    var(--ink-3) 25%,
    rgba(255,255,255,0.06) 50%,
    var(--ink-3) 75%
  );
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

/* Imagem começa invisível e faz fade-in ao carregar */
.media-frame img,
.pillar img,
.gallery-item img {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.media-frame img.img-loaded,
.pillar img.img-loaded,
.gallery-item img.img-loaded {
  opacity: 1;
}

/* prefers-reduced-motion: pula animações, mostra direto */
@media (prefers-reduced-motion: reduce) {
  .media-frame.img-loading,
  .pillar.img-loading,
  .gallery-item.img-loading {
    animation: none;
  }
  .media-frame img,
  .pillar img,
  .gallery-item img {
    opacity: 1;
    transition: none;
  }
}

/* ── Media frame: álbum de fotografias
   Sem corte, sem aspect-ratio forçado.
   A imagem define a altura do card. ── */
.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--ink-3);
  border: 1px solid var(--border-str);
  overflow: visible;
  /* sem aspect-ratio: o card cresce com a foto */
}
.media-frame.tall {
  /* herdado — sem modificação de proporção */
}
.media-frame-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  background: var(--ink-3);
}
.media-frame-video video:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* YouTube Shorts embed — proporção vertical 9:16 */
.media-frame-yt {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 16/9 invertido para formato vertical */
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-3);
}
.media-frame-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--r-lg);
}
.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--r-lg);
  /* sutil zoom no hover sem transição de corte */
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.media-frame:hover img {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
/* borda interna decorativa por cima da imagem */
.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-str);
  pointer-events: none;
}

/* CHAPTER HERO (full bleed) */
.chapter-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.chapter-hero-bg {
  position: absolute;
  inset: 0;
}
.chapter-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.28) saturate(0.7);
}
.chapter-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.98) 0%, rgba(12,10,9,0.72) 50%, rgba(12,10,9,0.5) 100%);
}
.chapter-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
  padding-top: 4rem;
}
.chapter-hero-text {
  font-size: 1.1rem;
  color: rgba(250,250,249,0.75);
  line-height: 1.85;
  max-width: 580px;
  margin-top: 1rem;
}

/* =========================================
   TODAY
   ========================================= */
#today {
  padding: 8rem 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.today-inner { text-align: center; }
.today-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: var(--cream);
  margin-top: 1rem;
  margin-bottom: 4rem;
}
.today-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.pillar {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.pillar-center { transform: translateY(-20px); }
.pillar img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.6);
}
.pillar:hover img { transform: scale(1.05); filter: brightness(0.75); }
.pillar p {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.9), transparent);
  padding: 2rem 1.5rem 1.2rem;
  font-size: 0.95rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--cream);
  line-height: 1.4;
}
.today-close {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--stone-3);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =========================================
   GALLERY
   ========================================= */
#gallery {
  padding: 8rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
  margin-top: 3rem;
  padding: 0 2rem;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  background: var(--ink-3);
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
}

/* =========================================
   LETTER
   ========================================= */
#letter {
  padding: 8rem 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
}
.letter-container { max-width: 760px; }
.letter-card {
  margin-top: 0;
  background: var(--glass);
  border: 1px solid var(--border-str);
  border-radius: var(--r-lg);
  padding: 4rem 3.5rem;
  position: relative;
  backdrop-filter: blur(16px);
}
.letter-rule {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.letter-rule.top { top: 2.8rem; }
.letter-rule.bottom { bottom: 2.8rem; }
.letter-greeting {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  color: var(--rose-lt);
  margin-bottom: 2.2rem;
  text-align: center;
}
.letter-card p {
  font-size: 1.05rem;
  color: var(--stone-3);
  line-height: 1.95;
  margin-bottom: 1.4rem;
}
.letter-card p:last-of-type { margin-bottom: 0; }
.letter-sign {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--rose-lt) !important;
  text-align: right;
  margin-top: 2.5rem;
  line-height: 1.7;
}

/* =========================================
   DREAMS
   ========================================= */
#dreams {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.dreams-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dream-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: start;
  gap: 2rem;
  padding: 2.5rem 0;
  position: relative;
  cursor: default;
  transition: background 0.3s var(--ease);
}
.dream-item:first-child { border-top: 1px solid var(--border); }
.dream-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.dream-item:hover .dream-line {
  background: var(--border-str);
}
.dream-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--border-str);
  line-height: 1;
  padding-top: 0.2rem;
  transition: color 0.3s var(--ease);
}
.dream-item:hover .dream-num { color: var(--gold); }
.dream-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.dream-copy p {
  font-size: 0.95rem;
  color: var(--stone-3);
  line-height: 1.75;
}

/* =========================================
   CLOSING
   ========================================= */
#closing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(159,18,57,0.14) 0%, var(--ink) 70%);
}
#closing-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4rem 2rem;
  text-align: center;
}
.closing-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 2;
  color: var(--stone-3);
  margin-bottom: 3rem;
}
.closing-quote p { margin-bottom: 1.4rem; }
.closing-quote p:last-child { margin-bottom: 0; }
.closing-quote strong { color: var(--cream); font-weight: 600; font-style: normal; }
.closing-sign {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose-lt);
}
.closing-sign strong { font-size: 1.6rem; }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
#footer p { font-size: 0.88rem; color: var(--stone-2); line-height: 1.8; }
#footer strong { color: var(--stone-3); font-weight: 500; }
.footer-date { font-size: 0.75rem; margin-top: 0.3rem; color: var(--stone); }

/* =========================================
   LIGHTBOX
   ========================================= */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,10,9,0.94);
  backdrop-filter: blur(12px);
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-str);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.lb-close:hover { background: var(--glass-b); }
.lb-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
  .hero-scroll-line { animation: none; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .chapter-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .chapter-text-left .chapter-media { order: 0; }
  .chapter-text-right .chapter-copy { order: 0; }
  .today-pillars { grid-template-columns: repeat(3, 1fr); }
  .pillar-center { transform: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.g-tall { grid-row: span 1; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .dream-item { grid-template-columns: 60px 1fr; }
  .dream-item .dream-line { grid-column: span 2; position: static; height: 1px; background: var(--border); margin-top: 1rem; }
}

@media (max-width: 640px) {
  .nav-date { display: none; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .today-pillars { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.g-wide { grid-column: span 2; }
  .letter-card { padding: 3rem 1.8rem; }
  .dreams-list { gap: 0; }
  .dream-item { grid-template-columns: 50px 1fr; padding: 2rem 0; }
  .chapter-hero { min-height: 60vh; }
}
