/* ─────────────────────────────────────────────
   TOKENS & RESET
───────────────────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --cream-mid:   #F2EDE4;
  --cream-dark:  #E8DDD0;
  --gold:        #C9A96E;
  --gold-light:  #DFC99A;
  --gold-dark:   #A07C42;
  --brown:       #3D2B1F;
  --brown-mid:   #6B4C37;
  --brown-light: #9B7B63;
  --text:        #3D2B1F;
  --text-soft:   #7A5C46;
  --white:       #FFFDF9;

  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Cormorant Garamond', Garamond, 'Book Antiqua', serif;

  --section-pad: clamp(3rem, 8vw, 7rem);
  --gutter:      clamp(1.25rem, 5vw, 3rem);
  --radius:      4px;
  --transition:  0.4s ease;
}

::selection {
  background: rgba(201, 169, 110, 0.35);
  color: var(--brown);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.7rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1rem, 2vw, 1.35rem); letter-spacing: 0.12em; text-transform: uppercase; }

p {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--text-soft);
}

/* ─────────────────────────────────────────────
   GOLD DIVIDERS & ORNAMENTS
───────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-block: 1.5rem;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.ornament svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  flex-shrink: 0;
}

.rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-block: 2rem;
  opacity: 0.6;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem var(--gutter);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold-dark); }

.nav-links a.active {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 1px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown-mid);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.97);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 0.85rem var(--gutter);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
  }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--section-pad) + 4rem) var(--gutter) var(--section-pad);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.06) 30%, rgba(201, 169, 110, 0.02) 52%, rgba(201, 169, 110, 0) 65%),
    radial-gradient(ellipse at 100% 100%, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.04) 30%, rgba(201, 169, 110, 0.01) 45%, rgba(201, 169, 110, 0) 55%),
    var(--cream);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

.hero-dates {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.05;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.hero-ampersand {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-top: 2.3rem;
  margin-bottom: 0.3rem;
  max-width: none;
}

.hero-tagline {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--brown-light);
  max-width: 52ch;
  margin-inline: auto;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────
   SECTIONS — SHARED
───────────────────────────────────────────── */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: 1180px;
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ─────────────────────────────────────────────
   PORTRAITS
───────────────────────────────────────────── */
.portraits {
  padding: var(--section-pad) var(--gutter);
  background: linear-gradient(to bottom, var(--cream), var(--cream-mid));
}

.portraits-inner {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 700px) {
  .portraits-inner {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

.portrait-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.portrait-card.visible {
  opacity: 1;
  transform: none;
}

.portrait-card:nth-child(2) {
  transition-delay: 0.18s;
}

.portrait-frame {
  width: clamp(180px, 35vw, 280px);
  height: clamp(180px, 35vw, 280px);
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-light);
  box-shadow:
    0 0 0 8px rgba(201, 169, 110, 0.12),
    0 12px 40px rgba(61, 43, 31, 0.15);
  margin-bottom: 1.5rem;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.portrait-years {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

/* ─────────────────────────────────────────────
   TRIBUTE TEXT SECTIONS
───────────────────────────────────────────── */
.tribute-section {
  padding: var(--section-pad) var(--gutter);
}

.tribute-section:nth-of-type(odd) {
  background: var(--white);
}

.tribute-section:nth-of-type(even) {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-mid) 100%);
}

.tribute-inner {
  max-width: 820px;
  margin-inline: auto;
}

.tribute-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tribute-person-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.tribute-years-span {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.tribute-body {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 2;
  color: var(--text-soft);
  text-align: justify;
  hyphens: auto;
}

.tribute-body p + p {
  margin-top: 1.4em;
}

.tribute-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-block: 2.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--brown-mid);
  background: rgba(201, 169, 110, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: none;
}

/* ─────────────────────────────────────────────
   PHOTO GALLERY
───────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream-mid);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 3px;
  max-width: 380px;
  margin-inline: auto;
  overflow: hidden;
}

.gallery-tab {
  flex: 1;
  padding: 0.65rem 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-light);
  transition: var(--transition);
  white-space: nowrap;
}

.gallery-tab + .gallery-tab {
  border-left: 1px solid rgba(201, 169, 110, 0.4);
}

.gallery-tab.active {
  background: var(--gold);
  color: var(--white);
}

.gallery-tab:hover:not(.active) {
  background: rgba(201, 169, 110, 0.1);
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin-inline: auto;
}

.gallery-grid.active { display: grid; }

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream-dark);
  position: relative;
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(61, 43, 31, 0.18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 31, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(61, 43, 31, 0.25);
}

.gallery-overlay-icon {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

.gallery-overlay-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(25, 16, 8, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open { display: flex; }

.lightbox-content {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-height: 80svh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: rgba(255, 253, 249, 0.7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: -0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 253, 249, 0.7);
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.lightbox-close:hover { color: var(--gold-light); }

.lightbox-close svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 253, 249, 0.12);
  border: 1px solid rgba(255, 253, 249, 0.2);
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-nav:hover { background: rgba(201, 169, 110, 0.3); }

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

@media (max-width: 640px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ─────────────────────────────────────────────
   VIDEO SECTION
───────────────────────────────────────────── */
.video-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-embed-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(61, 43, 31, 0.2);
  background: #1a1208;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--brown-mid);
  text-align: center;
  letter-spacing: 0.04em;
}

.video-link-thumb {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.video-link-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top-left channel header — avatar + title */
.video-link-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.video-link-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top:5px;
}

.video-link-header-title {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Red play button — centered over full thumbnail */
.video-link-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-link-play svg {
  width: 68px;
  height: 48px;
}

.yt-play-bg {
  fill: #ff0000;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.video-link-thumb:hover .yt-play-bg {
  opacity: 1;
}

.yt-play-arrow {
  fill: white;
  stroke: none;
}

/* "Watch on YouTube" badge — bottom left only */
.video-link-badge {
  position: absolute;
  bottom: 5px;
  left: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  padding: 0px 15px 0px 15px;
  border-radius: 0px;
  pointer-events: none;
  font-weight: 550;
  height: 47px;
}

.video-link-badge svg {
  height: 14px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────── */
.timeline-section {
  padding: var(--section-pad) var(--gutter);
  background: linear-gradient(to bottom, var(--cream-mid), var(--cream));
}

.timeline {
  max-width: 860px;
  margin-inline: auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-1px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light) 5%, var(--gold-light) 95%, transparent);
}

@media (max-width: 600px) {
  .timeline::before { left: 1.5rem; }
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: start;
  gap: 0 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 48px 1fr;
  }
}

.timeline-dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-mid);
  box-shadow: 0 0 0 2px var(--gold-light);
  margin: 0.35rem auto 0;
  grid-row: 1;
}

@media (max-width: 600px) {
  .timeline-dot {
    grid-column: 1;
    margin: 0.55rem 0 0 1.07rem;
    align-self: start;
  }
}

.timeline-left {
  text-align: right;
  padding-top: 0;
}

.timeline-right {
  text-align: left;
  padding-top: 0;
}

@media (max-width: 600px) {
  .timeline-left { grid-column: 2; text-align: left; }
  .timeline-right { grid-column: 2; }
  .timeline-item .timeline-dot { grid-row: 1; }
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: none;
}

/* alternate sides */
.timeline-item:nth-child(even) .timeline-left { order: 0; }
.timeline-item:nth-child(even) .timeline-right { order: 2; }

/* ─────────────────────────────────────────────
   CLOSING / FOOTER
───────────────────────────────────────────── */
.closing {
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  background: var(--brown);
  color: var(--cream-dark);
}

.closing h2 {
  color: var(--gold-light);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.closing p {
  color: rgba(232, 221, 208, 0.75);
  max-width: 60ch;
}

.closing .ornament {
  color: var(--gold);
  opacity: 0.5;
}

.closing .ornament::before,
.closing .ornament::after {
  background: linear-gradient(to right, transparent, var(--gold));
}

.footer {
  background: #251508;
  padding: 1.5rem var(--gutter);
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(232, 221, 208, 0.3);
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
