/* ═══════════════════════════════════════════════════════
   CONCERNING UNKNOWN WOMEN — Portraits from Park Abbey
   Shared Stylesheet
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');


    /* ... existing code ... */
.hero-bg-art {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 80% 60% at 30% 60%, rgba(80,50,15,0.25) 0%, transparent 70%),
radial-gradient(ellipse 50% 70% at 70% 40%, rgba(50,30,8,0.2) 0%, transparent 65%),
#0d0b08;
}

/* STREAMING_CHUNK: Estilizando el contenedor del iframe de Vimeo */
.hero-video-container {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
opacity: 0.5; /* Mantiene la opacidad suave idéntica al diseño anterior */
}

.hero-video-container iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 56.25vw; /* Ratio 16:9 */
min-height: 100vh;
min-width: 177.78vh; /* Cobertura perfecta */
transform: translate(-50%, -50%);
pointer-events: none; /* Previene clicks accidentales de pausa o redirección */
}

.hero-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.5;
}












/* ── Design Tokens ──────────────────────────────────── */
:root {
  --bg:            #faf8f4;
  --bg-warm:       #f2ede4;
  --bg-dark:       #13110e;
  --nav-bg:        #1c1a17;
  --nav-text:      #e8dfd0;
  --nav-hover:     #c9a96e;
  --text:          #2c2a27;
  --text-muted:    #6b6058;
  --accent:        #8b6914;
  --accent-light:  #c9a96e;
  --hero-bg:       #0d0b08;
  --hero-text:     #e8dfd0;
  --border:        #d4c9b8;
  --border-dark:   #3a3028;
  --ff-heading:    'Cormorant Garamond', Georgia, serif;
  --ff-body:       'Crimson Pro', Georgia, serif;
  --nav-height:    64px;
  --max-width:     1200px;
  --max-text:      720px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--nav-height);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ─────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav-text);
  white-space: nowrap;
}
.nav-logo em { font-style: italic; color: var(--accent-light); font-weight: 300; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-text);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--nav-text);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--nav-bg);
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 199;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.8rem 0;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-text);
  opacity: 0.75;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: opacity 0.2s, color 0.2s;
}
.mobile-nav a:hover { opacity: 1; color: var(--accent-light); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  min-height: 580px;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ─── To add your AI video:
       1. Save it as "hero-video.mp4" in this same folder.
       2. Save a still frame as "hero-poster.jpg" (shown while video loads).
       3. In index.html, uncomment the <video> tag.
   ─── */

.hero-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(80,50,15,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 70% 40%, rgba(50,30,8,0.2) 0%, transparent 65%),
    #0d0b08;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,8,0.25) 0%,
    rgba(13,11,8,0.05) 45%,
    rgba(13,11,8,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--hero-text);
  padding: 0 2rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.75rem;
  opacity: 0.85;
}
.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.015em;
  margin-bottom: 0.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-subtitle {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-bottom: 2.25rem;
}
.hero-rule {
  width: 56px;
  height: 1px;
  background: var(--accent-light);
  margin: 0 auto 2rem;
  opacity: 0.5;
}
.hero-location {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  border: 1px solid var(--accent-light);
  color: var(--accent-light);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.hero-cta:hover {
  background: var(--accent-light);
  color: var(--hero-bg);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--hero-text);
  opacity: 0.3;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: currentColor;
}

/* ── Info Bar ───────────────────────────────────────── */
.info-bar {
  background: var(--nav-bg);
  color: rgba(232,223,208,0.65);
  text-align: center;
  padding: 1.1rem 2rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.info-bar .dot {
  margin: 0 1.2rem;
  color: var(--accent-light);
  opacity: 0.5;
}

/* ── Page Header (inner pages) ──────────────────────── */
.page-header {
  background: var(--nav-bg);
  color: var(--hero-text);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.page-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.page-title em { font-style: italic; color: var(--accent-light); }
.page-subtitle {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.5;
  margin-top: 0.75rem;
}

/* ── Section Utilities ──────────────────────────────── */
.section { padding: 5.5rem 2rem; }
.section-light { background: var(--bg); }
.section-warm  { background: var(--bg-warm); }
.section-dark  {
  background: var(--bg-dark);
  color: var(--hero-text);
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-dark .eyebrow { color: var(--accent-light); opacity: 0.8; }

.section-heading {
  font-family: var(--ff-heading);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-dark .section-heading { color: var(--hero-text); }

.intro-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.intro-block p {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.intro-block p + p { margin-top: 1.1rem; }
.section-dark .intro-block p { color: rgba(232,223,208,0.6); }

.center { text-align: center; }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: var(--accent); color: var(--bg); }
.btn-pale {
  border-color: var(--nav-bg);
  color: var(--nav-bg);
}
.btn-pale:hover { background: var(--nav-bg); color: var(--bg); }
.btn-ghost {
  border-color: var(--accent-light);
  color: var(--accent-light);
}
.btn-ghost:hover { background: var(--accent-light); color: var(--hero-bg); }

/* ── Portrait Grid ──────────────────────────────────── */
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.portrait-card {
  cursor: default;
  transition: transform 0.35s ease;
}
a.portrait-card { cursor: pointer; }
a.portrait-card:hover { transform: translateY(-5px); }
a.portrait-card:hover .portrait-frame { border-color: rgba(201,169,110,0.5); }

.portrait-frame {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse 55% 65% at 50% 38%, #2e231a 0%, #1a1410 48%, #0d0b08 100%);
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: border-color 0.35s ease;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.portrait-frame-inner {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201,169,110,0.12);
  pointer-events: none;
  z-index: 1;
}

.portrait-label { text-align: center; }
.portrait-name {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.portrait-dates {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.portrait-desc {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Two-Column Layout ──────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}
.split-text p {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.split-text p:last-of-type { margin-bottom: 0; }
.split-image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(140deg, #1e1a16 0%, #0d0b08 100%);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.25);
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 2rem;
}

/* ── Text Article ───────────────────────────────────── */
.article {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 5.5rem 2rem;
}
.article p {
  font-size: 1.2rem;
  line-height: 1.88;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}
.article p.lead {
  font-size: 1.25rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
}
.article p:last-child { margin-bottom: 0; }
.article h2 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin: 3.5rem 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  margin: 2.5rem 0 0.75rem;
}

/* ── Bibliography ───────────────────────────────────── */
.bib-layer { margin-bottom: 4rem; }
.bib-layer-title {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.bib-entry {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.bib-entry:last-child { border-bottom: none; }
.bib-author {
  font-family: var(--ff-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.bib-title {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.bib-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.bib-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.bib-link {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(139,105,20,0.4);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.bib-link:hover { opacity: 0.6; }

/* ── Poem ───────────────────────────────────────────── */
.poem-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
  text-align: center;
}
.poem-title {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.poem-author {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}
.poem-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 3.5rem;
  opacity: 0.5;
}
.poem-body {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
  text-align: left;
}
.poem-body .stanza { margin-bottom: 2.25rem; }
.poem-body .stanza:last-child { margin-bottom: 0; }
.poem-note {
  margin-top: 4rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: left;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 4.5rem 3rem 2.5rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.1rem;
  opacity: 0.85;
}
.footer-col p,
.footer-col a {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.5;
  display: block;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 0.9; color: var(--accent-light); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.35;
  letter-spacing: 0.06em;
}

/* ── Horizontal Rule Ornament ───────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-text);
  margin: 0 auto 2rem;
  color: var(--accent);
  opacity: 0.45;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ornament-mark {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-style: italic;
}

/* ── Portrait Meta (date, place, sister name) ───────── */
.portrait-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
  line-height: .7rem;
}
.portrait-meta-dot { opacity: 0.35; }
.portrait-sister {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 0.15rem;
  text-align: center;
  line-height: 1.2rem;
}

/* ── Collection Controls (filter / sort) ────────────── */
.collection-controls {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.collection-count {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: auto;
}
.collection-count strong {
  color: var(--accent);
  font-weight: 400;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-select,
.filter-search {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.filter-select:hover,
.filter-search:hover,
.filter-select:focus,
.filter-search:focus {
  border-color: var(--accent);
}
.filter-search {
  min-width: 180px;
  cursor: text;
}
.filter-toggle {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-toggle:hover,
.filter-toggle.active {
  border-color: var(--accent);
  color: var(--accent);
}
.no-results {
  max-width: var(--max-width);
  margin: 2rem auto;
  text-align: center;
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: none;
}

/* ── Visit Page ─────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 980px;
  margin: 0 auto;
}
.visit-block { }
.visit-block h3 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.visit-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.visit-block p:last-child { margin-bottom: 0; }
.visit-block strong {
  color: var(--text);
  font-weight: 400;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-body);
  font-size: 1rem;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.55rem 0;
  color: var(--text-muted);
  line-height: 1.5;
}
.hours-table td:first-child {
  color: var(--text);
  width: 55%;
}
.hours-table td.closed {
  color: rgba(107,96,88,0.5);
  font-style: italic;
}
.visit-address {
  font-style: normal;
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.visit-address strong { color: var(--text); font-weight: 400; }
.speculative-notice {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 2rem 2.5rem;
}
.speculative-notice h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.speculative-notice p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.speculative-notice p:last-child { margin-bottom: 0; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .collection-controls { flex-direction: column; align-items: flex-start; }
  .collection-count { margin-right: 0; }
}
@media (max-width: 640px) {
  :root { --nav-height: 56px; }
  .site-nav { padding: 0 1.25rem; }
  .portrait-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
  .portrait-name { font-size: 1.05rem; }
  .portrait-desc { font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .section { padding: 4rem 1.25rem; }
  .article { padding: 4rem 1.25rem; }
  .filter-search { min-width: 140px; }
  .speculative-notice { padding: 1.5rem; }
}
