/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #FAFAF8;
  --bg-alt:   #F3F1ED;
  --text:     #1A1A1A;
  --muted:    #6B6862;
  --accent:   #B8975A;   /* warm gold */
  --accent-light: #E8D9B8;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --max:      900px;
  --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 48px 24px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, var(--accent-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  max-width: 500px;
}

.hero-evolution {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -12px;
}

.hero-names {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.hero-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--accent);
  border-radius: 40px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Video ── */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

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

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1A1A1A;
  color: #888;
  text-align: center;
  padding: 24px;
}
.video-placeholder span { font-size: 1.1rem; color: #aaa; }
.video-placeholder code {
  font-size: 0.75rem;
  background: #2a2a2a;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: monospace;
}
.video-placeholder.small span { font-size: 0.95rem; }

/* ── Video Grid (Archives) ── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.video-card .card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.video-card .card-desc {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ── Media Cards (Times of Stumul) ── */
.card-grid {
  display: grid;
  gap: 32px;
}
.card-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid #E8E4DC;
  transition: transform 0.2s, box-shadow 0.2s;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}

.media-card-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.media-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  font-size: 2.5rem;
}
.placeholder-thumb.large { aspect-ratio: 3/2; font-size: 4rem; }

.media-card-body {
  padding: 20px 22px 24px;
}
.media-card-body .card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.media-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 8px 0 14px;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.card-link:hover { text-decoration: underline; }

/* ── Single Card (Dholakia Dhamal) ── */
.single-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg);
  border: 1px solid #E8E4DC;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 40px;
}

.single-card-thumb {
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-card-body p {
  color: var(--muted);
  margin: 12px 0 24px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

/* ── Footer ── */
footer {
  background: var(--text);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-hashtag {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--accent);
  letter-spacing: -0.01em;
}

.footer-names {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.footer-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.8;
}

.footer-years {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

/* ── 19 May Through the Years ── */
.years-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.year-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.year-thumb {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
  display: block;
}
.year-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.year-thumb:hover img { transform: scale(1.04); }

.year-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0);
  transition: background 0.2s, color 0.2s;
}
.year-thumb:hover .year-thumb-overlay {
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.9);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 90vh;
  max-width: calc(100vw - 140px);
}

.lightbox-img-wrap img {
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 3.5rem;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-prev:hover,
.lightbox-next:hover { color: #fff; }

.year-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.year-caption {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Travels ── */
.card-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.travel-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #E8E4DC;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.travel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.travel-card-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.travel-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.travel-card-inner > div {
  flex: 1;
}
.travel-card-inner .card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.travel-card-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.travel-card-inner p {
  font-size: 0.85rem;
  color: var(--muted);
}

.travel-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.travel-card:hover .travel-arrow { transform: translateX(4px); }

@media (max-width: 700px) {
  .years-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.two-col { grid-template-columns: 1fr; }
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; gap: 48px; }
  .card-grid.three-col { grid-template-columns: 1fr; }
  .single-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  .section { padding: 64px 0; }
}
