/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ash);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250, 244, 235, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(181, 84, 28, 0.15);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(58, 46, 40, 0.1);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--terra-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  position: relative;
  background: var(--terra-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(181, 84, 28, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 149, 106, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--clay);
}

.hero-eyebrow span {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.1;
  color: var(--dust);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-title em {
  font-style: italic;
  color: var(--clay);
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dust);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
}

.scroll-hint span {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  opacity: 0.6;
}

.scroll-hint-line {
  width: 1px;
  height: 0;
  background: var(--clay);
  opacity: 0.4;
  animation: extendLine 2s ease-in-out infinite;
}

@keyframes extendLine {
  0%   { height: 0; opacity: 0.2; }
  50%  { height: 3rem; opacity: 0.5; }
  100% { height: 0; opacity: 0.2; }
}

.hero-right {
  position: relative;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(181, 84, 28, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(200, 149, 106, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-year {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(8rem, 15vw, 14rem);
  color: var(--terra);
  opacity: 0.2;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-annual {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-dark);
  opacity: 0.5;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero-pottery {
  position: absolute;
  width: 50%;
  max-width: 280px;
  bottom: 15%;
  opacity: 0.12;
  z-index: 0;
}

.hero-location {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  text-align: right;
  z-index: 1;
}

.hero-location span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  opacity: 0.5;
}

/* ===== ABOUT / HISTORY ===== */
.about {
  background: var(--cream);
  padding: 8rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
}

.section-label {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.section-label::before {
  content: '';
  display: block;
  width: 2px;
  height: 2.5rem;
  background: var(--terra);
  margin-bottom: 1rem;
}

.section-label h2 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra-dark);
  line-height: 1.8;
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--ash);
  margin-bottom: 2.5rem;
}

.about-lead em {
  font-style: italic;
  color: var(--terra);
}

.about-body p {
  color: var(--smoke);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(181, 84, 28, 0.2);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: var(--cream);
  padding: 4rem 6rem 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ash);
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--terra), var(--clay), var(--sand));
}

.timeline-item {
  position: relative;
  flex: 1;
  padding-right: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terra);
  transform: translateY(-50%);
  top: -0.3rem;
}

.timeline-year {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.6;
}

/* ===== MEET THE ORGANIZERS ===== */
.organizers-section {
  background: var(--cream);
  padding: 8rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.organizers-header {
  margin-bottom: 4rem;
}

.organizers-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--ash);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.organizers-title em {
  font-style: italic;
  color: var(--terra);
}

.organizers-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
  opacity: 0.7;
}

.organizers-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
  gap: 4rem;
}

.organizer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(181, 84, 28, 0.12);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.organizer-card:hover {
  border-color: rgba(181, 84, 28, 0.3);
}

.organizer-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra-dark), var(--terra));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
}

.organizer-photo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(181, 84, 28, 0.25);
}

.organizer-initials {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--dust);
}

.organizer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ash);
  margin-bottom: 0.4rem;
}

.organizer-role {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
}

.organizer-bio {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--smoke);
  max-width: 45ch;
  margin-bottom: 1.8rem;
}

.organizer-links {
  display: flex;
  gap: 1.2rem;
}

.organizer-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(181, 84, 28, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.organizer-links a:hover {
  color: var(--terra-dark);
  border-color: var(--terra-dark);
}

/* ===== VOUNOUS IN THE MEDIA ===== */
.media-section {
  background: var(--cream);
  padding: 8rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.media-header {
  margin-bottom: 3rem;
}

.media-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--ash);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.media-title em {
  font-style: italic;
  color: var(--terra);
}

.media-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
  opacity: 0.7;
}

.media-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.media-filter button {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(181, 84, 28, 0.25);
  color: var(--smoke);
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.media-filter button:hover {
  border-color: var(--terra);
  color: var(--terra-dark);
}

.media-filter button.active {
  background: var(--terra);
  color: var(--dust);
  border-color: var(--terra);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.media-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(181, 84, 28, 0.12);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  border-color: rgba(181, 84, 28, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58, 46, 40, 0.08);
}

.media-card.hidden {
  display: none;
}

.media-badge {
  align-self: flex-start;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid rgba(181, 84, 28, 0.3);
  padding: 0.25rem 0.7rem;
  margin-bottom: 1.2rem;
}

.media-badge--video {
  color: var(--gold);
  border-color: rgba(201, 151, 58, 0.4);
}

.media-badge--social {
  color: var(--smoke);
  border-color: rgba(107, 90, 78, 0.3);
}

.media-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ash);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.media-card-source {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.media-card-excerpt {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--smoke);
  flex-grow: 1;
}

.media-card--video {
  position: relative;
}

.media-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.media-card--video:hover .media-play-icon {
  background: rgba(201, 151, 58, 0.1);
  border-color: var(--gold);
}

.media-play-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--ash);
  padding: 6rem;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107, 90, 78, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--dust);
  line-height: 1.2;
}

.gallery-title em {
  font-style: italic;
}

.gallery-subtitle,
.gallery-note {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--clay);
  opacity: 0.6;
  max-width: 25ch;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(58, 46, 40, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 0.3rem;
}

.gallery-caption p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  color: var(--clay);
  opacity: 0.7;
}

.gallery-credit {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: right;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--clay);
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

/* ===== QUOTE BAND ===== */
.quote-section {
  background: var(--terra-dark);
  padding: 6rem;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: var(--cream);
  opacity: 0.04;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.quote-inner {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--dust);
  margin-bottom: 2rem;
}

.quote-text strong {
  font-weight: 400;
  font-style: italic;
  color: var(--clay);
}

.quote-attribution {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ash);
  padding: 4rem 6rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand h3 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--clay);
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--clay);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-location {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--clay);
  opacity: 0.4;
}

/* ===== GALLERY ARCHIVE ===== */
.gallery-archive {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-year-block {
  margin-top: 5rem;
}

.gallery-year-block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.gallery-year-block + .gallery-year-block {
  border-top: 1px solid rgba(200,149,106,0.15);
  padding-top: 4rem;
}

.gallery-year-label {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.year-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--terra);
  opacity: 0.4;
  line-height: 1;
}

.year-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  opacity: 0.7;
}

.gallery-filter {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.gallery-filter button {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(200,149,106,0.3);
  color: var(--clay);
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter button:hover {
  border-color: var(--clay);
  color: var(--dust);
}

.gallery-filter button.active {
  background: var(--terra);
  color: var(--dust);
  border-color: var(--terra);
}

.gallery-year-block.hidden {
  display: none;
}

.gallery-year-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-year-grid.three-col {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}

/* Placeholder items */
.gallery-placeholder {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.gallery-placeholder .gallery-caption {
  transform: translateY(0);
  position: relative;
  background: none;
}

.gallery-placeholder.gp-1 {
  background: linear-gradient(135deg, rgba(181,84,28,0.15), rgba(200,149,106,0.1));
}

.gallery-placeholder.gp-2 {
  background: linear-gradient(135deg, rgba(200,149,106,0.12), rgba(107,90,78,0.1));
}

.gallery-placeholder.gp-3 {
  background: linear-gradient(135deg, rgba(107,90,78,0.15), rgba(181,84,28,0.08));
}

.gallery-placeholder.gp-4 {
  background: linear-gradient(135deg, rgba(232,213,183,0.15), rgba(200,149,106,0.1));
}

.gallery-placeholder.gp-5 {
  background: linear-gradient(135deg, rgba(181,84,28,0.1), rgba(232,213,183,0.12));
}

.gallery-credit a {
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,149,106,0.3);
  transition: border-color 0.3s ease;
}

.gallery-credit a:hover {
  border-color: var(--clay);
}

/* ===== SYMPOSIUMS PAGE ===== */
.symp-hero {
  min-height: 50vh;
  background: var(--terra-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 4rem;
}

.symp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(181, 84, 28, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 149, 106, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.symp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.symp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.symp-hero-eyebrow::before,
.symp-hero-eyebrow::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--clay);
}

.symp-hero-eyebrow span {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
}

.symp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--dust);
  margin-bottom: 1.5rem;
}

.symp-hero-title em {
  font-style: italic;
  color: var(--clay);
}

.symp-hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--dust);
  opacity: 0.5;
  max-width: 50ch;
  margin: 0 auto;
}

.nav-active {
  color: var(--terra) !important;
}

/* Editions list */
.editions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.edition {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(181, 84, 28, 0.12);
}

.edition:first-child {
  padding-top: 0;
}

.edition:last-child {
  border-bottom: none;
}

.edition-year-col {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.edition-year {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--terra);
  opacity: 0.35;
}

.edition-ordinal {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.5rem;
}

.edition-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--ash);
  margin-bottom: 1rem;
}

.edition-title em {
  font-style: italic;
  color: var(--terra);
}

.edition-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.edition-meta span {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  opacity: 0.7;
}

.edition-text p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--smoke);
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

.edition-text p:last-child {
  margin-bottom: 0;
}

/* Teaser edition */
.edition--teaser {
  background: linear-gradient(135deg, rgba(181, 84, 28, 0.06) 0%, rgba(200, 149, 106, 0.04) 100%);
  border: 1px solid rgba(181, 84, 28, 0.15);
  border-radius: 2px;
  padding: 4rem;
  margin-bottom: 2rem;
}

.edition--teaser .edition-year {
  opacity: 0.6;
  color: var(--terra);
}

.edition--teaser .edition-title {
  font-size: 2.4rem;
}

.edition-cta {
  margin-top: 2rem;
}

.edition-link {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dust);
  background: var(--terra);
  padding: 0.8rem 2rem;
  text-decoration: none;
  border: 1px solid var(--terra);
  transition: all 0.3s ease;
}

.edition-link:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
}

@media (max-width: 768px) {
  .editions { padding: 3rem 1.5rem; }
  .edition {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
  .edition--teaser { padding: 2rem 1.5rem; }
  .edition-year-col { position: static; display: flex; align-items: baseline; gap: 1rem; }
  .edition-meta { flex-direction: column; gap: 0.5rem; }
  .symp-hero { min-height: 40vh; padding: 7rem 1.5rem 3rem; }
}

/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery-year-grid,
  .gallery-year-grid.three-col {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-year-grid .gallery-item { grid-row: auto !important; }
  .gallery-year-label { gap: 1rem; }
}

@media (max-width: 1024px) {
  .about { padding: 6rem 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-label { position: static; }
  .timeline-section { padding: 4rem 3rem 6rem; }
  .organizers-section { padding: 6rem 3rem; }
  .gallery-section { padding: 4rem 3rem; }
  .gallery-grid { grid-template-rows: repeat(2, 240px); }
  .media-section { padding: 6rem 3rem; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-section { padding: 4rem 3rem; }
  .footer { padding: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 244, 235, 0.96);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(181, 84, 28, 0.15);
  }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 2rem 4rem; min-height: 70vh; }
  .hero-right { padding: 4rem 2rem; min-height: 50vh; }
  .scroll-hint { left: 2rem; }

  .about { padding: 4rem 1.5rem; }
  .stats { grid-template-columns: 1fr; gap: 2rem; }

  .timeline-section { padding: 3rem 1.5rem 5rem; }
  .timeline { flex-direction: column; gap: 2rem; padding-top: 0; }
  .timeline::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 4px;
    right: auto;
    background: linear-gradient(to bottom, var(--terra), var(--clay), var(--sand));
  }
  .timeline-item { padding-left: 2rem; padding-right: 0; }
  .timeline-item::before { top: 0.4rem; left: 0; }

  .organizers-section { padding: 4rem 1.5rem; }
  .organizers-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .organizer-card { padding: 2rem 1.5rem; }

  .gallery-section { padding: 3rem 1.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-caption { transform: translateY(0); }

  .media-section { padding: 4rem 1.5rem; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card { padding: 1.5rem; }

  .quote-section { padding: 3rem 1.5rem; }
  .quote-text { font-size: 1.2rem; }

  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}
