@import url('fonts.css');

:root {
  --c-bg: #1F3A5F;
  --c-bg-deep: #3D5680;
  --c-bg-deeper: #7A9CC6;
  --c-dusty-blue: #7A9CC6;
  --c-panel: #1A1B2E;
  --c-canvas-card: #FBF8F1;
  --c-white: #FFFFFF;

  --c-navy: #1F3A5F;
  --c-navy-2: #2E4E78;

  --c-heading: #FFFFFF;
  --c-text: #DCE4F2;
  --c-text-secondary: #A9B8D6;

  --c-purple: #8A4E96;
  --c-purple-deep: #4B1F52;
  --c-purple-soft: #9A5FA6;
  --c-purple-mist: #C3A6D1;

  --c-gold: #B9975B;
  --c-gold-light: #E3CE9A;
  --c-gold-deep: #C9A25E;
  --c-gold-line: linear-gradient(120deg, #8B6B36, #E3CE9A 45%, #B9975B 55%, #F1DFAF 75%, #8B6B36);
  --c-gold-card: #8B6B36;

  --c-focus-ring: var(--c-gold-light);

  --shadow-frame: 0 18px 40px -18px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 10px 30px -14px rgba(0, 0, 0, 0.45);
  --shadow-plaque: 0 2px 0 rgba(139, 107, 54, 0.4), 0 10px 24px -12px rgba(0, 0, 0, 0.45);

  --font-display: 'Playfair Display', 'Iowan Old Style', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.6rem, 5vw + 1.2rem, 4.75rem);
  --fs-h1: clamp(2rem, 3vw + 1.2rem, 3.1rem);
  --fs-h2: clamp(1.5rem, 1.8vw + 1rem, 2.15rem);
  --fs-h3: clamp(1.2rem, 1vw + 0.9rem, 1.45rem);
  --fs-lead: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem);
  --fs-quote: clamp(1.5rem, 1.8vw + 1.1rem, 2.35rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-label: 0.72rem;

  --space-2xs: 0.375rem;
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 3.25rem;
  --space-xl: 5rem;
  --space-2xl: 4.5rem;

  --room-pad-x: clamp(1.5rem, 5vw, 3rem);
  --content-max: 40rem;
  --content-max-wide: 64rem;

  --radius-md: 20px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --ease-museum: cubic-bezier(0.22, 0.61, 0.26, 1);
  --dur-slow: 900ms;
  --dur-med: 550ms;
  --dur-fast: 280ms;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1, h2, h4 { color: var(--c-heading); }
h3 { color: var(--c-navy); }

p { margin: 0 0 var(--space-sm); }

.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;
}

a.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  z-index: 999;
  transition: top var(--dur-fast) var(--ease-museum);
}
a.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--c-focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

.texture-overlay {
  position: fixed;
  inset: 0;
  background-image: url('../assets/texture-canvas.svg');
  background-size: 220px 220px;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.exhibit-directory {
  position: fixed;
  top: var(--space-sm);
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-start;
  padding: 0 var(--room-pad-x);
  pointer-events: none;
  transition: transform var(--dur-fast) var(--ease-museum), opacity var(--dur-fast) var(--ease-museum);
}
.exhibit-directory--hidden {
  transform: translateY(-130%);
  opacity: 0;
}
.exhibit-directory--hidden .exhibit-directory__track { pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .exhibit-directory { transition: none; }
}

.exhibit-directory__toggle {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(139, 107, 54, 0.22);
  box-shadow: var(--shadow-soft);
  color: var(--c-gold-card);
  cursor: pointer;
}
.exhibit-directory__toggle svg { width: 20px; height: 16px; }

.exhibit-directory__track {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  transform: translateY(-6px);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 200px;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(139, 107, 54, 0.22);
  box-shadow: var(--shadow-frame);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-museum), transform var(--dur-fast) var(--ease-museum), visibility var(--dur-fast);
}
.exhibit-directory__track.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .exhibit-directory__track { transition: none; }
}

.exhibit-directory__progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: var(--c-gold-line);
  transition: width 120ms linear;
  z-index: 41;
  pointer-events: none;
}

.exhibit-directory__link {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 0.6rem 0.85rem;
  border-radius: calc(var(--radius-md) - 4px);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--c-navy-2);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-museum), color var(--dur-fast);
}
.exhibit-directory__link[aria-current="true"] {
  background: var(--c-navy);
  color: var(--c-white);
}
.exhibit-directory__link:hover { background: rgba(74, 60, 104, 0.12); }

.room {
  position: relative;
  padding: var(--space-2xl) var(--room-pad-x);
  z-index: 2;
}
.room__inner {
  max-width: var(--content-max-wide);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.room--narrow .room__inner { max-width: var(--content-max); }


.room__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--c-purple);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}
.room__eyebrow::before, .room__eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--c-gold);
}

.room__heading { max-width: 42rem; }
.room__lede {
  font-family: 'Lucida Handwriting', var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--c-text-secondary);
  max-width: 38rem;
}
.room__lede--centered-narrow { margin: 0 auto; max-width: 26rem; }
.room__lede--tight-top { margin: 1rem auto 0; color: var(--c-navy-2); }

.room__intro--centered {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.room__intro--centered .room__eyebrow { justify-content: center; }
.room__intro--centered .room__heading,
.room__intro--centered .room__lede { margin-left: auto; margin-right: auto; }
.room__lede--large {
  font-size: clamp(1.15rem, 0.8vw + 1rem, 1.4rem);
  line-height: 1.6;
  max-width: 36rem;
}

.flourish-divider {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: var(--space-md) 0;
  color: var(--c-gold-deep);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 var(--room-pad-x);
}
.flourish-divider__line {
  flex: 1 1 auto;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.flourish-divider__pulse {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 220px);
  height: auto;
  overflow: visible;
}
.flourish-divider .stroke-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flourish-divider__heart {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.3);
  opacity: 0;
  transition: transform 0.5s var(--ease-museum) 1.5s, opacity 0.5s ease 1.5s;
}
.flourish-divider svg.is-visible .flourish-divider__heart {
  transform: scale(1);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .flourish-divider__heart { transition: none; transform: scale(1); opacity: 1; }
}

.entrance {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--room-pad-x);
  background: #12101c;
  overflow: hidden;
}
.entrance__ambient {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 75% 68% at 50% 42%, rgba(8, 6, 14, 0.68), transparent 72%),
    linear-gradient(rgba(8, 6, 14, 0.32), rgba(8, 6, 14, 0.12) 28%, rgba(8, 6, 14, 0.1) 60%, rgba(8, 6, 14, 0.4) 100%),
    url('../assets/photos/entrance-hero.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center 30%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  pointer-events: none;
  z-index: 0;
}
.entrance__plaque,
.entrance-portrait,
.entrance__scroll-cue {
  position: relative;
  z-index: 1;
}
.entrance__plaque {
  position: relative;
  max-width: 44rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.entrance__label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--space-sm);
}
.entrance__names {
  font-size: var(--fs-hero);
  line-height: 1.08;
  margin-bottom: var(--space-sm);
  color: #FFFFFF;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}
.entrance__names .amp {
  display: block;
  font-style: italic;
  font-size: 0.5em;
  color: var(--c-gold-light);
  margin: 0.15em 0;
}
.entrance__plaque .room__lede { color: rgba(255, 255, 255, 0.82); }
.entrance__date {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--fs-small);
  color: #FFFFFF;
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(227, 206, 154, 0.35);
}
.entrance__date--countdown {
  border-top: none;
  margin-top: 2.00rem;
  padding-top: 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}
.entrance__location {
  display: block;
  font-weight: 400;
  color: var(--c-gold-light);
  margin-top: 2.00rem;
  letter-spacing: 0.04em;
}
.entrance__scroll-cue {
  margin-top: var(--space-lg);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
}
.entrance__scroll-cue svg { width: 14px; height: 22px; animation: driftDown 2.4s ease-in-out infinite; }
@keyframes driftDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .entrance__scroll-cue svg { animation: none; }
}

.quote-section {
  padding: var(--space-2xl) var(--room-pad-x);
}
.quote-section__inner {
  max-width: 26rem;
  margin: 0 auto;
}
.quote-section__media { margin: 0; }
.quote-section__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.quote-section__caption {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  text-align: center;
}

.timeline {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--c-gold-deep), var(--c-dusty-blue));
  opacity: 0.45;
}
@media (min-width: 720px) {
  .timeline::before { left: 50%; margin-left: -1px; }
}

.timeline__item {
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: var(--space-lg);
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: 14px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-canvas-card);
  border: 2px solid var(--c-gold);
  box-shadow: 0 0 0 4px var(--c-bg);
}

@media (min-width: 720px) {
  .timeline__item {
    width: calc(50% - 2.5rem);
    padding-left: clamp(2rem, 4vw, 3rem);
  }
  .timeline__item:nth-child(odd) { margin-left: 0; padding-left: 0; padding-right: clamp(2rem, 4vw, 3rem); }
  .timeline__item:nth-child(even) { margin-left: calc(50% + 2.5rem); }
  .timeline__item:nth-child(odd) .timeline__dot { left: auto; right: -2.5rem; }
  .timeline__item:nth-child(even) .timeline__dot { left: -2.5rem; }
}

.placard {
  background: var(--c-canvas-card);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 4vw, 2rem);
  box-shadow: var(--shadow-plaque);
  border: 1px solid rgba(139, 107, 54, 0.28);
  position: relative;
}
.placard__year {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-card);
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}
.placard__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.placard__text {
  font-size: var(--fs-small);
  color: var(--c-navy-2);
  margin: 0;
}

.gallery-wall {
  column-count: 2;
  column-gap: clamp(0.6rem, 1.6vw, 1rem);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) { .gallery-wall { column-count: 3; } }
@media (min-width: 900px) { .gallery-wall { column-count: 4; } }
@media (min-width: 1300px) { .gallery-wall { column-count: 5; } }

.gallery-wall .frame {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 clamp(0.6rem, 1.6vw, 1rem);
}


.gallery-breather {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: var(--space-xl);
}
.gallery-breather__image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 260px;
  object-fit: cover;
}

.frame {
  position: relative;
  cursor: zoom-in;
}
.frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--frame-img);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}
.gallery-wall .frame:nth-child(even)::after { transform: scaleX(-1); }

.frame--c {
  aspect-ratio: 500 / 696;
  --frame-img: url('../assets/ornate-frame-c.webp');
  --win-top: 20.9%; --win-right: 19.6%; --win-bottom: 15%; --win-left: 18.7%;
}
.frame--d {
  aspect-ratio: 500 / 732;
  --frame-img: url('../assets/ornate-frame-d.webp');
  --win-top: 21.9%; --win-right: 15.9%; --win-bottom: 13%; --win-left: 16.3%;
}

.frame--c-h {
  aspect-ratio: 696 / 500;
  --frame-img: url('../assets/ornate-frame-c-h.webp');
  --win-top: 18.7%; --win-right: 20.9%; --win-bottom: 19.6%; --win-left: 15%;
}
.frame--d-h {
  aspect-ratio: 732 / 500;
  --frame-img: url('../assets/ornate-frame-d-h.webp');
  --win-top: 16.3%; --win-right: 21.9%; --win-bottom: 15.9%; --win-left: 13%;
}

.gallery-wall .frame--c:nth-child(even) {
  --win-left: 19.6%; --win-right: 18.7%;
}
.gallery-wall .frame--d:nth-child(even) {
  --win-left: 15.9%; --win-right: 16.3%;
}
.gallery-wall .frame--c-h:nth-child(even) {
  --win-left: 20.9%; --win-right: 15%;
}
.gallery-wall .frame--d-h:nth-child(even) {
  --win-left: 21.9%; --win-right: 13%;
}

.frame__photo-wrap {
  position: absolute;
  top: var(--win-top, 12%);
  right: var(--win-right, 12%);
  bottom: var(--win-bottom, 12%);
  left: var(--win-left, 12%);
  overflow: hidden;
  background: linear-gradient(160deg, var(--c-bg), var(--c-bg-deeper));
}
.frame__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-med) var(--ease-museum);
}
.frame:hover .frame__photo,
.frame:focus-within .frame__photo { transform: scale(1.06); }

.frame__photo-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(110, 47, 122, 0.35), transparent 60%),
    linear-gradient(150deg, var(--c-bg) 0%, var(--c-bg-deeper) 45%, #D8C79A 100%);
}
.frame__photo-wrap--placeholder::before {
  content: 'A · V';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.frame__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.35), transparent 60%),
              linear-gradient(to bottom, transparent 60%, rgba(20, 24, 40, 0.25));
  pointer-events: none;
}
.frame__caption {
  margin-top: 0.65rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--c-navy-2);
  background: var(--c-canvas-card);
  border: 1px solid rgba(139, 107, 54, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.entrance-portrait {
  width: min(18rem, 100%);
  margin: var(--space-lg) auto 0;
}
.entrance-portrait__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.entrance-portrait__caption {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(20, 24, 40, 0.78);
  backdrop-filter: blur(6px);
}
.lightbox[data-open="true"] { display: flex; }
.frame__photo-wrap--lightbox {
  position: static;
  inset: auto;
  aspect-ratio: 4 / 3;
}
.lightbox__frame {
  max-width: min(90vw, 720px);
  width: 100%;
  background: var(--c-white);
  padding: 14px;
  border-radius: 10px;
  position: relative;
}
.lightbox__img { width: 100%; border-radius: 4px; display: block; }
.lightbox__close {
  position: absolute;
  top: -46px; right: 0;
  background: var(--c-canvas-card);
  border: 1px solid var(--c-gold);
  color: var(--c-navy);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox__caption {
  text-align: center;
  color: var(--c-navy-2);
  font-family: var(--font-display);
  font-style: italic;
  padding-top: 0.6rem;
}

::view-transition-group(gallery-photo-morph) {
  animation-duration: var(--dur-slow);
  animation-timing-function: var(--ease-museum);
}
::view-transition-group(gallery-caption-morph) {
  animation-duration: var(--dur-med);
  animation-timing-function: var(--ease-museum);
}
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}

.info-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: var(--space-lg);
}
.info-grid + .info-grid { margin-top: var(--space-md); }
.info-grid--timeline { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) {
  .info-grid--timeline { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--c-canvas-card);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 4vw, 2rem);
  border: 1px solid rgba(139, 107, 54, 0.28);
  box-shadow: var(--shadow-soft);
}
.info-card__icon {
  width: 40px; height: 40px;
  margin-bottom: var(--space-xs);
  color: var(--c-purple);
}
.info-card__icon--swan { width: 32px; height: 32px; margin-bottom: calc(var(--space-xs) - 2px); }
.info-card__image {
  display: block;
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin: 0 auto var(--space-sm);
}
.info-card__label {
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-card);
  font-weight: 600;
  margin-bottom: 0.40rem;
  display: block;
}
.info-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin-bottom: 1.00rem;
}
.info-card__text { font-size: var(--fs-small); color: var(--c-navy-2); margin: 0; }
.info-card__text + .info-card__text { margin-top: 0.35rem; }
.info-card__divider {
  border: none;
  border-top: 1px solid rgba(139, 107, 54, 0.25);
  margin: 1rem 0 0.85rem;
}

.color-group { margin-bottom: var(--space-xs); }
.color-group__label {
  display: block;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-navy-2);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.color-swatches {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.00rem;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(139, 107, 54, 0.28);
  box-shadow: var(--shadow-soft);
}
.color-swatch--green-1 { background: #2F4F3D; }
.color-swatch--green-2 { background: #6B8F71; }
.color-swatch--green-3 { background: #B8D4B0; }
.color-swatch--yellow-1 { background: #C9A227; }
.color-swatch--yellow-2 { background: #E0B84B; }
.color-swatch--yellow-3 { background: #F0D98C; }

.ticket-booth {
  background: var(--c-canvas-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-frame);
  border: 1px solid rgba(139, 107, 54, 0.32);
  padding: clamp(1.5rem, 5vw, 3rem);
  margin-top: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.ticket-booth::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--c-gold-line);
}
.ticket-booth--center { text-align: center; }
.ticket-booth__stub {
  display: inline-block;
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-purple);
  border: 1px dashed var(--c-purple-soft);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: var(--space-sm);
}

.hint { font-size: 0.78rem; color: var(--c-navy-2); opacity: 0.8; }
.hint--spaced { margin-top: 1rem; }

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  background: var(--c-navy);
  color: var(--c-white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease-museum), box-shadow var(--dur-fast), background var(--dur-fast);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn:visited { color: var(--c-white); }
.btn--gold:visited { color: var(--c-navy); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,0.5); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn--gold { background: linear-gradient(120deg, var(--c-gold-deep), var(--c-gold)); color: var(--c-navy); }

.faq-list { margin-top: var(--space-lg); }
.faq-item {
  border-bottom: 1px solid rgba(195, 166, 209, 0.28);
}
.faq-item:first-child { border-top: 1px solid rgba(195, 166, 209, 0.28); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--c-heading);
  cursor: pointer;
  min-height: 44px;
}
.faq-item__icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  color: var(--c-gold-deep);
  transition: transform var(--dur-fast) var(--ease-museum);
}
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-med) var(--ease-museum);
}
.faq-item[data-open="true"] .faq-item__a { max-height: 20em; }
.faq-item__a p { padding: 0 0.25rem 1.1rem; color: var(--c-text-secondary); font-size: var(--fs-small); }

.closing {
  text-align: center;
  padding-bottom: var(--space-2xl);
}
.closing__plaque {
  max-width: 34rem;
  margin: 0 auto;
  background: var(--c-canvas-card);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 3rem);
  box-shadow: var(--shadow-frame);
  border: 1px solid rgba(139, 107, 54, 0.35);
}
.closing__signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h2);
  color: var(--c-navy);
}
.closing__names { margin-top: var(--space-sm); font-size: var(--fs-h3); color: var(--c-purple-deep); }
.closing__flourish { margin: 0 auto 1rem; color: var(--c-gold-card); }

footer.site-footer {
  text-align: center;
  padding: var(--space-xl) var(--room-pad-x) var(--space-lg);
  border-top: 1px solid rgba(139, 107, 54, 0.22);
  font-size: 0.8rem;
  color: var(--c-text-secondary);
  opacity: 0.75;
}
footer.site-footer p { margin: 0 0 0.5rem; }
footer.site-footer p:last-child { margin-bottom: 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-museum), transform var(--dur-slow) var(--ease-museum);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-med) var(--ease-museum), transform var(--dur-med) var(--ease-museum);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 60ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(n+8) { transition-delay: 420ms; }

.stroke-draw {
  stroke-dasharray: var(--path-len, 300);
  stroke-dashoffset: var(--path-len, 300);
  transition: stroke-dashoffset 1.6s var(--ease-museum);
}
.is-visible .stroke-draw { stroke-dashoffset: 0; }
.stroke-draw--len-80 { --path-len: 80; }
.stroke-draw--len-120 { --path-len: 120; }
.stroke-draw--len-260 { --path-len: 260; }

.drift {
  transition: transform 1.8s var(--ease-museum), opacity 1.8s var(--ease-museum);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .stroke-draw,
  .drift {
    transition-duration: 1ms !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .entrance__names { font-size: clamp(2.1rem, 11vw, 2.8rem); }
}
