/* ============================================================
   ADHIBASHIBRINDA 2026 — Main Stylesheet
   ============================================================ */

/* Section divider — soft horizontal rule between sections */
.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(253, 251, 247, 0) 0%,
      rgba(253, 251, 247, 0.55) 50%,
      rgba(253, 251, 247, 0) 100%);
  margin: 0 auto;
  width: min(85%, 1100px);
  opacity: 0.75;
}

.section-divider--dark {
  background: linear-gradient(90deg,
      rgba(28, 26, 23, 0) 0%,
      rgba(28, 26, 23, 0.35) 50%,
      rgba(28, 26, 23, 0) 100%);
  opacity: 0.9;
}

/* Atmospheric Drift — watermark behind Core Committee */
.ambient-drift {
  animation: gentle-flow 30s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

@keyframes gentle-flow {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(4vw, 3vh) rotate(4deg) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-drift {
    animation: none;
  }
}

/* Portrait placeholder — warm editorial fill with monogram */
.portrait-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 80% at 50% 15%, rgba(201, 151, 58, 0.10) 0%, rgba(201, 151, 58, 0) 60%),
    linear-gradient(180deg, #F4EEE4 0%, #E8DFD1 100%);
}

.portrait-initials {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.05em;
  color: rgba(178, 34, 34, 0.55);
  user-select: none;
}

/* About page profile portraits: grayscale by default, reveal color on interaction */
.profile-photo-reveal {
  filter: grayscale(100%);
  cursor: pointer;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.profile-photo-reveal:hover,
.profile-photo-reveal:focus-visible,
.profile-photo-reveal.is-color {
  filter: grayscale(0%);
  transform: translateY(-2px);
}

/* ============================================================
   PAGE LOADER — minimal (black bg, logo, three dots)
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.loader-logo {
  width: clamp(160px, 24vmin, 240px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.loader-dots {
  display: flex;
  gap: 10px;
}

.loader-dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.3;
  animation: loader-dot 1s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes loader-dot {

  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
}

/* ============================================================
   PREMIUM SCROLL REVEAL — Intersection Observer animations
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered child reveals for components that enter in sequence */
.reveal-group .reveal-up:nth-child(1) {
  transition-delay: 0s;
}

.reveal-group .reveal-up:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-group .reveal-up:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-group .reveal-up:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-group .reveal-up:nth-child(5) {
  transition-delay: 0.32s;
}

/* ============================================================
   PARALLAX WATERMARKS — CSS-based parallax for ambient SVGs
   ============================================================ */
.parallax-slow {
  will-change: transform;
  transition: transform 0.1s linear;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #b22222;
  color: var(--text-body);
  font-family: 'Poppins', sans-serif;
  overflow-x: clip;
  /* Changed to clip to allow sticky header */
}

/* App wrapper overflow control */
#app {
  overflow-x: clip;
  position: relative;
}

/* ============================================================
   ZONE 1 — Dark Red color-blocked zone
   Wraps: Hero, Marquee, About, Archives
   ============================================================ */
.zone-1-red {
  background-color: #b22222;
  color: #FDFBF7;
  position: relative;
  padding-bottom: 1rem;
}

/* Zone 1 heading defaults */
.zone-1-red h1,
.zone-1-red h2,
.zone-1-red h3,
.zone-1-red h4 {
  color: #FDFBF7;
}

/* ============================================================
   ZONE 2 — Red-Tinted Alabaster color-blocked zone
   Wraps: Stats, APSS 2024, Gallery, Contact
   ============================================================ */
.zone-2-light {
  background-color: #F8EFEF;
  padding: 5rem 0 1rem;
  position: relative;
}

.zone-2-light::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.6vw;
  background:
    radial-gradient(circle at 1vw 0, #b22222 1vw, transparent 1.01vw)
    0 0 / 2vw 100% repeat-x;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 768px) {
  .zone-2-light::before {
    height: 4vw;
    background:
      radial-gradient(circle at 2vw 0, #b22222 2vw, transparent 2.01vw)
      0 0 / 4vw 100% repeat-x;
  }
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.zone-2-light.page-shell::before {
  display: none;
}

.zone-2-light.gallery-year-content::before {
  /* scallop edge is enabled — same as homepage */
}

.zone-2-light.gallery-year-content {
  padding-top: 4rem;
}

.page-shell--inner {
  padding-bottom: 0;
}

.page-section {
  position: relative;
  isolation: isolate;
}

.page-section-inner {
  position: relative;
  z-index: 2;
}

.page-ornament {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.1;
}

.page-ornament img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-ornament--left {
  left: -8vw;
  top: 4rem;
  width: min(34vw, 360px);
}

.page-ornament--right {
  right: -8vw;
  top: 5rem;
  width: min(32vw, 340px);
}

.page-ornament--soft {
  opacity: 0.12;
  animation: gentle-flow 24s ease-in-out infinite alternate;
}

.page-copy-card {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(178, 34, 34, 0.08);
  box-shadow: 0 18px 44px rgba(178, 34, 34, 0.06);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.page-copy-card--contact {
  min-height: 100%;
}

.page-profile-block {
  position: relative;
}

@media (max-width: 991px) {
  .page-ornament--left {
    left: -18vw;
    top: 1rem;
    width: 46vw;
  }

  .page-ornament--right {
    right: -16vw;
    top: 1rem;
    width: 42vw;
  }
}

@media (max-width: 576px) {
  .page-copy-card {
    padding: 1.25rem;
  }
}

/* Zone 2 typography inversion */
.zone-2-light h1,
.zone-2-light h2,
.zone-2-light h3,
.zone-2-light h4 {
  color: #b22222;
}

.zone-2-light p,
.zone-2-light span,
.zone-2-light li,
.zone-2-light a:not(.achievements-cta) {
  color: #333333;
}

/* Zone 2 eyebrow text — Aged Brass */
.zone-2-light .gallery-eyebrow,
.zone-2-light .theme-highlight-eyebrow,
.zone-2-light .contact-intro-label {
  color: black;
}

/* ============================================================
   ZONE 3 — Dark Red footer anchor (editorial heritage aesthetic)
   ============================================================ */
.zone-3-footer {
  background-color: #b22222;
  color: #FDFBF7;
}

.zone-3-footer footer {
  background: transparent;
}

/* Zone 3 heading defaults */
.zone-3-footer h1,
.zone-3-footer h2,
.zone-3-footer h3,
.zone-3-footer h4,
.zone-3-footer h5 {
  color: #FDFBF7;
}

/* Footer brand name */
.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FDFBF7;
  line-height: 1.1;
}

/* Footer brand Bengali text */
.footer-brand-bengali {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #FDFBF7;
  opacity: 0.85;
}

/* Footer brand tagline */
.footer-brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #FDFBF7;
  opacity: 0.6;
  line-height: 1.5;
}

/* Footer brand logo */
.footer-brand-logo {
  display: block;
  width: min(320px, 85%);
  height: auto;
}

/* Footer column headings */
.footer-col-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FDFBF7;
  margin-bottom: 1.25rem;
}

/* Footer links list */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #FDFBF7;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-link:hover {
  opacity: 1;
  color: #FDFBF7;
  text-decoration: none;
}

/* Footer contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #FDFBF7;
  opacity: 0.7;
  line-height: 1.5;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #FDFBF7;
  opacity: 0.8;
}

/* Ensure footer contact icon/text are consistently aligned across duplicated footer style blocks */
.zone-3-footer .footer-contact-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  column-gap: 0.75rem;
}

.zone-3-footer .footer-contact-icon {
  margin-top: 2px;
}

.zone-3-footer .footer-contact-item span,
.zone-3-footer .footer-contact-item .footer-link {
  display: block;
  margin: 0;
  line-height: 1.5;
}

.zone-3-footer .footer-contact-item .footer-link {
  color: #FDFBF7;
  opacity: 0.72;
}

/* Footer copyright */
.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #FDFBF7;
  opacity: 0.6;
}

/* Footer social icons */
.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FDFBF7;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #FDFBF7;
}

/* ============================================================
   AMBIENT ART — isolated SVG watermarks (no tiling)
   ============================================================ */

/* Zone 1: Mandala — retained for global ambient tint (low opacity background) */
.zone-1-mandala {
  position: absolute;
  top: 5%;
  right: -10vw;
  width: min(45vw, 500px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
  animation: spin-slow 120s linear infinite;
}

/* ─────────────────────────────────────────────
   VISIBLE SECTION DECOR — Chakra + drifting Kolka
   Scoped to section-about and section-archives.
   Architecture: a positioned WRAPPER + inner IMG.
   Positioning lives on the wrapper; animation lives on the img.
   Each element owns ONE transform — never conflicting.
   ───────────────────────────────────────────── */
.section-decor-wrap {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-decor-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
}

/* Alpana — already a light/white design on transparent bg.
   No inversion needed; screen blend still safely drops any residual dark fringe. */
.section-decor-mandala {
  top: 33%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  transform: translateY(-50%);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.section-decor-mandala.is-right {
  right: -10vw;
  left: auto;
}

.section-decor-mandala.is-left {
  left: -10vw;
  right: auto;
}

.section-decor-mandala img {
  animation-name: decor-chakra-spin;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
  transform-origin: center center;
  will-change: transform;
}

.section-decor-mandala--theme {
  top: 30%;
  left: -10vw;
  right: auto;
  opacity: 0.4;
  mix-blend-mode: normal;
}

.section-decor-mandala--committee {
  top: auto;
  bottom: -2.5rem;
  right: -7vw;
  left: auto;
  transform: none;
  opacity: 0.4;
  mix-blend-mode: normal;
}

@keyframes decor-chakra-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Kolka (paisley motif) — already light-colored on transparent,
   so `screen` blend alone makes it read white on red. No inversion. */
.section-decor-kolka {
  top: 72%;
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  transform: translateY(-50%);
  opacity: 0.75;
  mix-blend-mode: screen;
}

.section-decor-kolka.is-right {
  right: -4vw;
  left: auto;
}

.section-decor-kolka.is-left {
  left: -6vw;
  right: auto;
  top: 77%;
  opacity: 0.85;
}

.section-decor-kolka.is-right img {
  animation-name: decor-kolka-drift-right;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: running;
  will-change: transform;
}

.section-decor-kolka.is-left img {
  animation-name: decor-kolka-drift-left;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: running;
  will-change: transform;
}

@keyframes decor-kolka-drift-left {
  0% {
    transform: translate(0, 0) rotate(-8deg);
  }

  100% {
    transform: translate(50px, -18px) rotate(8deg);
  }
}

@keyframes decor-kolka-drift-right {
  0% {
    transform: translate(0, 0) rotate(8deg);
  }

  100% {
    transform: translate(-50px, 18px) rotate(-8deg);
  }
}

@media (max-width: 768px) {
  .section-decor-mandala {
    width: 70vw;
    height: 70vw;
    opacity: 0.4;
    top: 11%;
  }

  .section-decor-mandala.is-right {
    right: -22vw;
  }

  .section-decor-mandala.is-left {
    left: -32vw;
  }

  .section-decor-mandala--theme {
    top: 14%;
    left: -32vw;
    opacity: 0.22;
  }

  .section-decor-mandala--committee {
    right: -22vw;
    bottom: -3.5rem;
    opacity: 0.16;
  }

  .section-decor-mandala--theme,
  .section-decor-mandala--committee {
    display: none;
  }

  .section-decor-kolka {
    width: 55vw;
    height: 55vw;
    opacity: 1;
    top: 11%;
  }

  .section-decor-kolka.is-right {
    right: -12vw;
  }

  .section-decor-kolka.is-left {
    left: -12vw;
    display: none;
  }
}

/* Intentionally no prefers-reduced-motion override for section decor —
   these ornaments are core to the visual identity and must keep moving
   even when the OS has reduced-motion enabled. */

/* Zone 2: Paisley — bottom-left, static, colored #b22222 */
.zone-2-paisley {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(35vw, 400px);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  /* Force red color for visibility on ivory background */
  filter: brightness(0) saturate(100%) invert(24%) sepia(85%) saturate(3500%) hue-rotate(350deg) brightness(90%) contrast(95%);
}

@keyframes spin-slow {
  100% {
    transform: rotate(360deg);
  }
}

/* ── Design Tokens ── */

/* ============================================================
   AMBIENT BACKGROUND LAYER — non-interactive decorative SVGs
   ============================================================ */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#app>*:not(.ambient-bg):not(.site-header):not(#site-header) {
  position: relative;
  z-index: 2;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Image 1: The Spinner (Mandala) — slow rotation */
.ambient-mandala {
  position: absolute;
  top: -10%;
  right: -15vw;
  width: min(50vw, 600px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  /* Force Warm Ivory color */
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
  animation: spin-slow 120s linear infinite;
}

/* Image 2: The Static Anchor (Paisley) — no motion */
.ambient-paisley {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(40vw, 450px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  /* Force Warm Ivory color */
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Slow spin animation for mandala */
@keyframes spin-slow {
  100% {
    transform: rotate(360deg);
  }
}

:root {
  --bg-base: #b22222;
  --bg-section: #F2EEE8;
  --bg-dark: #1A1410;

  --text-primary: #1C1A17;
  --text-body: #3D3830;
  --text-muted: #7A7268;
  --text-on-dark: #F0EBE3;

  --accent-red: #C0392B;
  --accent-red-soft: #E8897F;
  --accent-gold: #C9973A;
  --accent-gold-soft: #E8C97A;

  --overlay-hero: rgba(26, 20, 16, 0.62);
  --shadow-card: 0 20px 60px rgba(26, 20, 16, 0.08);
  --shadow-hover: 0 30px 80px rgba(26, 20, 16, 0.14);
  --shadow-video: 0 28px 90px rgba(26, 20, 16, 0.20);
}


/* ============================================================
   FIXED VIDEO BACKGROUND — parallax hero
   Video stays fixed, content scrolls on top
   ============================================================ */
.hero-video-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

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

.hero-video-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero horizontal slider */
.hero-slide-track {
  display: flex;
  width: 300%;          /* 3 slides × 100% each */
  height: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide-track img {
  flex: 0 0 calc(100% / 3);
  width: calc(100% / 3);
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero {
  position: relative;
  width: 100%;
  height: min(72vh, 860px);
  min-height: 420px;
  overflow: hidden;
}

.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Hero text overlay */
.hero-text-overlay {
  position: absolute;
  bottom: 30%;
  left: 5.5%;
  z-index: 5;
  pointer-events: none;
  width: min(84vw, 760px);
  min-height: clamp(220px, 28vw, 360px);
}

.hero-text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.6em;
  row-gap: 0;
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-text-content.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* .hero-text-primary is a passthrough so its children flow in the flex-wrap parent */
.hero-text-primary {
  display: contents;
}

.hero-text-line1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.44);
  transform: translate3d(-18px, 0, 0);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.5s ease;
}

/* Force the first block word onto its own row so the rest flow inline with the script */
.hero-text-primary .hero-text-line1:first-child {
  flex-basis: 100%;
}

.hero-text-line2 {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(3.8rem, 8.4vw, 8.8rem);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.44);
  transform: translate3d(20px, 18px, 0) scale(0.96);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.6s ease;
}

.hero-text-content.active .hero-text-line1,
.hero-text-content.active .hero-text-line2 {
  opacity: 1;
}

.hero-text-content.active .hero-text-line1 {
  transform: translate3d(0, 0, 0);
}

.hero-text-content.active .hero-text-primary .hero-text-line1:nth-child(2) {
  transition-delay: 0.3s;
}

.hero-text-content.active .hero-text-line2 {
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.6s;
}

@media (max-width: 768px) {
  .page-hero {
    height: min(66vh, 680px);
    min-height: 360px;
  }

  .hero-text-overlay {
    bottom: 30%;
    left: 4.5%;
    width: min(90vw, 480px);
    min-height: 170px;
  }

  .hero-text-line1 {
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  .hero-text-line2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  /* Mobile: force the cursive word onto its own line after the last block word */
  .hero-text-line2 {
    flex-basis: 100%;
    margin-left: 0;
    margin-top: 0.08em;
  }
}

@media (max-width: 576px) {
  .page-hero {
    height: min(60vh, 560px);
    min-height: 320px;
  }

  .hero-text-overlay {
    bottom: 40%;
    min-height: 148px;
  }

  .hero-text-content {
    row-gap: 0.06em;
  }

  .hero-text-line1 {
    font-size: clamp(2.45rem, 14vw, 3.8rem);
  }

  .hero-text-line2 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }
}

/* Uniform red overlay — vibrant wash across the whole hero image */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(139, 18, 18, 0.78) 0%,
      rgba(178, 34, 34, 0.62) 50%,
      rgba(178, 34, 34, 0.5) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.1) 55%,
      transparent 100%);
}


/* ============================================================
   HERO OUTER — scrollable content over fixed video
   ============================================================ */
.hero-outer {
  position: relative;
  /* Exact fit: header (~108px) + hero + marquee (~155px) = 100dvh at scroll-top */
  height: calc(100vh - 275px);
  height: calc(100dvh - 275px);
  min-height: 380px;
}

.hero-sticky {
  position: relative;
  height: 100%;
  overflow: hidden;
}


/* ============================================================
   GLOBAL SHARED HEADER — transparent top, white on scroll
   ============================================================ */
.site-header {
  position: relative;
  width: 100%;
  z-index: 999;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.2rem;
  padding: 18px 44px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(28, 26, 23, 0.04);
  transition: padding 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease, border-color 0.32s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(28, 26, 23, 0.06);
  padding: 12px 44px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.site-header__logo img {
  width: auto;
  display: block;
  transition: height 0.32s ease, opacity 0.32s ease;
}

/* Top-of-page logo — hidden internally since header is always solid */
.site-header__logo-img--top {
  display: none !important;
}

/* Scrolled-state logo — always visible now */
.site-header__logo-img--scrolled {
  height: 72px;
  opacity: 1;
  position: static;
  pointer-events: auto;
}

.site-header__logo {
  position: relative;
}

.site-header__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 2.2vw, 2.8rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.site-header__nav>li {
  position: relative;
}

/* Bridge the hover gap so submenu doesn't collapse while moving cursor down */
.site-header__nav>li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.site-header__nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1c1a17;
  text-shadow: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-header.is-scrolled .site-header__nav a {
  font-weight: 800;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-header__dropdown a:hover,
.site-header__dropdown a:focus-visible {
  color: #b22222;
  opacity: 1;
}

.site-header__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  list-style: none;
  margin: 0;
  padding: 0.7rem 0.9rem;
  min-width: 140px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(26, 20, 16, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-header__dropdown a {
  display: block;
  color: #1c1a17;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-shadow: none;
  padding: 0.42rem 0;
}

.site-header__nav>li:hover>.site-header__dropdown,
.site-header__nav>li:focus-within>.site-header__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header__toggle {
  justify-self: end;
  display: none;
  border: 0;
  background: transparent;
  color: #1c1a17;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color 0.22s ease;
  z-index: 3;
}

.site-header.is-scrolled .site-header__toggle {
  color: #b22222;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1101;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   MOBILE MENU TOP DRAWER — slides down from top, blurs rest
   ============================================================ */

/* The Background Fade keyframe */
@keyframes overlayFade {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }

  to {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}

/* The Text Reveal keyframe (slide up and fade in) */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Drawer slide-down/slide-up transition (Vue .drawer transition) */
.drawer-enter-active,
.drawer-leave-active {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-enter-from,
.drawer-leave-to {
  transform: translateY(-100%);
}

.drawer-enter-to,
.drawer-leave-from {
  transform: translateY(0);
}

/* Mobile menu overlay — premium top drawer */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-bottom: 3rem;
  background-color: #b22222;
  z-index: 1102;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

/* Menu backdrop blur — sits behind drawer, on top of site */
.menu-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Ambient Mandala SVG — bottom right corner */
.mobile-menu-mandala {
  position: absolute;
  bottom: -10vw;
  right: -10vw;
  width: 60vw;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) invert(1);
}

/* Close Button — top right, Aged Brass color */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #FDFBF7;
  z-index: 30;
  pointer-events: auto;
  padding: 8px;
  transition: opacity 0.2s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

/* Navigation Content — centered */
.mobile-menu-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem;
}

/* Main Navigation Links — serif, display-4, ivory */
.mobile-menu-link,
.mobile-menu-gallery-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  color: #FDFBF7;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
}

/* Staggered reveal animation for menu links */
.menu-link-anim {
  opacity: 0;
  animation: textReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.menu-link-anim:nth-child(1) {
  animation-delay: 0.1s;
}

.menu-link-anim:nth-child(2) {
  animation-delay: 0.2s;
}

.menu-link-anim:nth-child(3) {
  animation-delay: 0.3s;
}

.menu-link-anim:nth-child(4) {
  animation-delay: 0.4s;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible,
.mobile-menu-gallery-title:hover {
  color: #FDFBF7;
}

/* Year Pills — horizontal, Aged Brass bordered */
.mobile-menu-years {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Golden gallery pills staggered animation */
.menu-pills-anim {
  opacity: 0;
  animation: textReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.45s;
}

.mobile-menu-year {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FDFBF7;
  border: 1px solid rgba(253, 251, 247, 0.45);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.mobile-menu-year:hover,
.mobile-menu-year:focus-visible {
  background: #FDFBF7;
  color: #b22222;
}

/* Footer Anchor — bottom of screen */
.mobile-menu-footer {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(253, 251, 247, 0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
  margin: 0;
}


/* ============================================================
   HERO TEXT BLOCK — left aligned on video
   ============================================================ */
.hero-text-block {
  position: absolute;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 50vw;
}

.hero-intro-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  color: rgba(240, 235, 227, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.hero-big-words {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}

.hero-big-word {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(3.8rem, 8.5vw, 8.5rem);
  color: #F0EBE3;
  will-change: transform, opacity;
}

.hero-big-word--accent {
  font-style: italic;
  color: var(--accent-red-soft);
}


/* ============================================================
   HERO SCROLL HINT
   ============================================================ */
.hero-scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 5;
}

.scroll-hint-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.75);
}

.scroll-hint-track {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(240, 235, 227, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-hint-thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(240, 235, 227, 0.75);
  animation: scrollThumbDrop 1.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollThumbDrop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(200%);
    opacity: 0;
  }
}


/* ============================================================
   ABOUT US SECTION — Bootstrap grid, heritage editorial layout
   ============================================================ */
.section-about {
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
  background: #b22222;
}

.section-about-inner {
  position: relative;
  width: 100%;
}

.section-about .container {
  position: relative;
  z-index: 2;
}

/* Arch + Logo hover animation */
.about-arch-wrapper {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.about-arch-wrapper:hover {
  transform: scale(1.05);
}

/* Keep the About-section kolka as a background watermark behind text */
.section-about .section-decor-kolka {
  opacity: 0.40;
  mix-blend-mode: normal;
}

.section-about .section-decor-kolka.is-right {
  right: -6vw;
  top: 71%;
}

/* Watermark wrapper — prevents horizontal scroll on mobile */
.about-watermark-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Watermark text styling */
.about-watermark-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 15vw, 14rem);
  color: #FDFBF7;
  opacity: 0.05;
  white-space: nowrap;
  display: block;
  line-height: 1;
}

/* Eyebrow: "ABOUT US" */
.about-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FDFBF7;
}

/* Main Heading */
.about-heading {
  font-family: 'Poppins', sans-serif;
  color: #FDFBF7;
  line-height: 1.2;
}

/* Body Text */
.about-body {
  font-family: 'Poppins', sans-serif;
  color: rgba(253, 251, 247, 0.8);
}

/* Anchor offset for About profile deep-links below fixed header */
.profile-anchor {
  scroll-margin-top: 110px;
}

/* CTA Button — override Bootstrap outline-light for better contrast */
.about-btn {
  border-color: rgba(253, 251, 247, 0.45);
  color: #FDFBF7;
  transition: all 0.35s ease;
}

.about-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1A1410;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .section-about {
    padding: 50px 0 50px;
  }

  .section-decor-wrap.section-decor-kolka.is-left {
    display: none;
  }

  #section-archives .section-decor-wrap.section-decor-kolka.is-left {
    display: none;
  }

  .section-about .section-decor-kolka {
    width: 48vw;
    height: 48vw;
    opacity: 0.75;
  }

  .section-about .section-decor-kolka.is-right {
    right: -18vw;
    top: 37%;
  }

  .about-heading {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

@media (max-width: 576px) {
  .section-about {
    padding: 40px 0 40px;
  }

  .about-eyebrow {
    font-size: 0.75rem;
  }

  .about-btn {
    font-size: 0.75rem !important;
    padding: 12px 28px !important;
  }
}

.ft-logo img {
  max-width: 120px;
}


/* ============================================================
   THE ARCHIVES SECTION — past events showcase
   ============================================================ */
.section-archives {
  padding: 20px 0 0;
  position: relative;
  overflow: hidden;
}

.section-archives .container {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.archives-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FDFBF7;
}

/* Main Heading */
.archives-heading {
  font-family: 'Poppins', sans-serif;
  color: #FDFBF7;
}

/* Hide scrollbar for horizontal scroll */
.archives-scroll::-webkit-scrollbar {
  display: none;
}

/* Archive card hover scale effect */
.hover-scale {
  transition: transform 0.35s ease;
}

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

.transition-transform {
  transition: transform 0.35s ease;
}

/* Premium serif font class for archive cards */
.font-serif {
  font-family: 'Poppins', sans-serif;
}

/* 2025 archive card typography (Poppins, bold, slightly larger) */
.archive-card-poppins {
  font-family: 'Poppins', sans-serif;
}

.archive-row {
  --bs-gutter-x: 1.5rem;
}

.archive-col {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.archive-arch-wrapper {
  max-width: none;
  margin: 0 auto;
}

.archive-card-content {
  width: 100%;
}

.archive-card-main {
  color: #b22222;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.archive-card-art {
  color: #b22222;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 2px;
}

.archive-card-year {
  color: #b22222;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1;
  margin-top: 2px;
}

.archive-card-cta {
  display: inline-block;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(0.68rem, 1.1vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #b22222;
  padding-bottom: 2px;
}

@media (max-width: 991px) {
  .archive-row {
    --bs-gutter-x: 0.15rem;
  }

  .archive-col {
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }

  .archive-card-content {
    width: 76%;
  }

  .archive-card-main {
    font-size: clamp(0.92rem, 2vw, 1.12rem);
    line-height: 1.05;
  }

  .archive-card-art {
    font-size: clamp(0.72rem, 1.3vw, 0.86rem);
    line-height: 1.05;
  }

  .archive-card-year {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    line-height: 1;
  }

  .archive-card-cta {
    font-size: clamp(0.52rem, 0.95vw, 0.63rem);
    letter-spacing: 0.07em;
  }
}

@media (max-width: 576px) {
  .archive-col {
    margin-bottom: 0.6rem !important;
  }

  .archive-card-content {
    width: 77%;
  }

  .archive-card-main {
    font-size: 0.55rem;
    line-height: 1;
  }

  .archive-card-art {
    font-size: 0.42rem;
    line-height: 1;
    margin-top: 1px;
  }

  .archive-card-year {
    font-size: 0.98rem;
    line-height: 1;
    margin-top: 1px;
    margin-bottom: 2px !important;
  }

  .archive-card-cta {
    font-size: 0.34rem;
    letter-spacing: 0.05em;
    padding-bottom: 1px;
  }
}

/* ============================================================
   ACHIEVEMENTS SECTION — light background with stats
   ============================================================ */
.section-achievements {
  padding: 50px 5vw 30px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.achievements-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Header row: title left, CTA right */
.achievements-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 48px;
}

.achievements-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.achievements-main {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  line-height: 1.3;
  margin-top: 4px;
}

/* CTA button */
.achievements-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  background: #1A1410;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.achievements-cta:hover {
  background: #000000;
  transform: translateY(-2px);
}

/* Divider line */
.achievements-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

/* Individual stat item */
.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.achievement-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  flex-shrink: 0;
}

.number-highlight {
  color: #b22222;
}

.zone-2-light .number-highlight,
.zone-2-light .number-star {
  color: #b22222;
}

.number-unit {
  color: #ffffff;
}


.achievement-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.achievement-label span {
  white-space: pre-line;
}

@media (max-width: 576px) {
  .section-achievements {
    padding: 12px 4vw 22px;
  }

  .achievements-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 16px;
  }

  .achievement-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .achievement-number {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .achievement-label {
    font-size: clamp(0.62rem, 2.2vw, 0.78rem);
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   THEME REVEAL SECTION
   ============================================================ */
.theme-reveal-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 140px 5vw;
}

.theme-reveal-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.theme-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.theme-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--text-primary);
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.theme-letter {
  display: inline-block;
  opacity: 0;
}

.theme-letter-space {
  display: inline-block;
  width: 0.35em;
}

.theme-sub {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-body);
  opacity: 0;
}


/* ============================================================
    ANIMATION UTILITY CLASSES
    ============================================================ */
.anim-fadeup {
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-text-block {
    left: 5vw;
    top: auto;
    bottom: 14vh;
    transform: none;
    max-width: 90vw;
  }

  .hero-big-word {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
    gap: 0.8rem;
  }

  .site-header.is-scrolled {
    padding: 10px 18px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__logo-img--top {
    height: 170px;
    margin: -34px 0;
  }

  .site-header .site-header__logo-img--scrolled {
    height: 58px;
  }

  .hero-video-overlay {
    inset: 0;
    background: linear-gradient(180deg,
        rgba(139, 18, 18, 0.72) 0%,
        rgba(178, 34, 34, 0.6) 55%,
        rgba(178, 34, 34, 0.55) 100%);
  }
}

@media (max-width: 576px) {
  .hero-text-block {
    left: 5vw;
    bottom: 10vh;
  }

  .site-header {
    padding: 10px 14px;
  }

  .site-header.is-scrolled {
    padding: 8px 14px;
  }

  .site-header__logo-img--top {
    height: 140px;
    margin: -28px 0;
  }

  .site-header .site-header__logo-img--scrolled {
    height: 50px;
  }

  .mobile-menu-overlay {
    width: 100%;
  }
}


/* ============================================================
   FULL WIDTH IMAGE SECTION — skeleton placeholder banner
   ============================================================ */
.section-full-image {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 30;
  overflow: hidden;
}

.full-image-inner {
  width: 100%;
  line-height: 0;
}

.full-image-placeholder {
  width: 100%;
  height: 400px;
  background: #e8e4df;
  position: relative;
  overflow: hidden;
}

.placeholder-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #e8e4df 0%,
      #d4cfc9 20%,
      #e8e4df 40%,
      #e8e4df 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Optional: image when available */
.full-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   THEME HIGHLIGHT SECTION — image + details
   ============================================================ */
.section-theme-highlight {
  padding: 80px 2.5vw;
  position: relative;
}

.theme-highlight-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.theme-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: clamp(20px, 2vw, 32px);
  border-radius: 14px;
  border: 1px solid rgba(178, 34, 34, 0.1);
}

/* Image placeholder */
.theme-highlight-image {
  position: sticky;
  top: 100px;
}

.skeleton-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
  box-shadow: 0 4px 20px rgba(178, 34, 34, 0.05);
}

.skeleton-image-placeholder .skeleton-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #e8e4df 0%,
      #d4cfc9 20%,
      #e8e4df 40%,
      #e8e4df 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Content side */
.theme-highlight-content {
  padding-top: 20px;
}

.theme-highlight-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.theme-highlight-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
}

.theme-highlight-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.theme-highlight-details {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-highlight-details li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.theme-highlight-details li strong {
  font-weight: 600;
  color: var(--text-primary);
}

.theme-highlight-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .section-theme-highlight {
    padding: 70px 5vw;
  }

  .theme-highlight-grid {
    grid-template-columns: 1fr;
  }

  .theme-highlight-image {
    position: static;
  }
}

/* ============================================================
   GALLERY SECTION — automatic slider
   ============================================================ */
.section-gallery {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* 2026 theme banner before Core Committee */
.theme-banner-section {
  width: 100%;
  margin: 0;
  padding-top: clamp(40px, 6vw, 90px);
  background-color: #F8EFEF;
}

.theme-banner-section--flush {
  padding-top: 0;
}

.theme-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Core Committee cards — equal-height alignment so name-wrap doesn't break row */
.section-committee .committee-slider > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.section-committee .committee-slider > [class*="col-"] > .bg-white {
  margin-bottom: 1rem;
}

.section-committee .committee-slider h4 {
  min-height: 3.6rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem !important;
}

.section-committee .committee-slider h4 + p {
  margin-bottom: 1.25rem !important;
}

.section-committee .committee-slider a {
  margin-top: auto;
  align-self: center;
}

.section-committee .committee-card-link {
  color: inherit;
  width: 100%;
  height: 100%;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.section-committee .committee-card-link:hover,
.section-committee .committee-card-link:focus-visible {
  transform: translateY(-4px);
}

.section-committee .committee-card-link:focus-visible {
  outline: 2px solid rgba(178, 34, 34, 0.35);
  outline-offset: 6px;
}

.section-committee .committee-card-cta {
  align-self: center;
  width: auto;
}

/* 2026 Theme & Artist intro — sits between banner and Core Committee */
.theme-intro {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
}

.theme-intro-inner {
  max-width: 820px;
  text-align: center;
}

.theme-intro-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #1f1b18;
  margin-bottom: 18px;
}

.theme-intro-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #b22222;
  margin: 0 0 22px;
}

.theme-intro-artist {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 32px;
}

.theme-intro-artist-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #b22222;
  margin-left: 8px;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(178, 34, 34, 0.35);
}

.theme-intro-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.85;
  color: #3d3630;
  margin: 0;
}

.theme-intro-body strong {
  color: #b22222;
  font-weight: 600;
}

.theme-intro-body em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #1f1b18;
  font-weight: 500;
}

@media (max-width: 576px) {
  .theme-intro-inner {
    padding: 0 8px;
  }
  .theme-intro-body {
    text-align: left;
    line-height: 1.75;
  }
}

.gallery-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(8px, 1.4vw, 20px);
}

/* Gallery header */
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1f1b18;
  margin-bottom: 12px;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #b22222;
  margin: 0;
}

.gallery-page-copy {
  max-width: 760px;
  margin: 18px auto 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: #4a4038;
}

/* Dedicated hero text styles for yearly gallery pages */
.gallery-hero-content {
  position: relative;
  z-index: 3;
}

.gallery-hero--theme {
  background-image:
    linear-gradient(rgba(26, 20, 16, 0.52), rgba(26, 20, 16, 0.52)),
    url('../images/2026-theme.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(120px, 20vw, 170px) 0 clamp(56px, 8vw, 84px);
  text-align: center;
}

.gallery-hero-kicker {
  color: #FDFBF7 !important;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  opacity: 1 !important;
  transform: none !important;
}

.gallery-hero-title {
  color: #FDFBF7 !important;
  opacity: 1 !important;
  transform: none !important;
}

.gallery-hero-desc {
  color: rgba(253, 251, 247, 0.78) !important;
  max-width: 620px;
  opacity: 1 !important;
  transform: none !important;
}

/* Theme credits row under gallery hero description */
.gallery-hero-credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.55rem 2rem;
  max-width: 920px;
  margin: 2rem auto 0;
  padding: 1.2rem 1rem 0;
  border-top: 1px solid rgba(253, 251, 247, 0.18);
}

.gallery-hero-credits .credit {
  color: rgba(253, 251, 247, 0.92);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.gallery-hero-credits .credit-label {
  display: inline-block;
  color: rgba(253, 251, 247, 0.55);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-right: 0.45rem;
}

.gallery-hero-credits .credit-value {
  font-weight: 500;
}

@media (max-width: 576px) {
  .gallery-hero-credits {
    gap: 0.6rem 1.2rem;
    padding: 1rem 0.5rem 0;
  }

  .gallery-hero-credits .credit {
    font-size: 0.85rem;
  }
}

/* Gallery Slider */
.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.gallery-slider-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 320px;
  min-width: 320px;
  border-radius: 8px;
  overflow: hidden;
}

/* Placeholder styling */
.gallery-placeholder {
  width: 100%;
  height: clamp(240px, 22vw, 340px);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(178, 34, 34, 0.05);
}

.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  animation: gallery-shimmer 1.8s ease-in-out infinite;
}

.gallery-placeholder span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

@keyframes gallery-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.gallery-slide img {
  width: 100%;
  height: clamp(250px, 23vw, 360px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.gallery-slide-link,
.gallery-slide-link:hover,
.gallery-slide-link:focus,
.gallery-slide-link:active {
  display: block;
  text-decoration: none;
  background: transparent;
  opacity: 1;
}

.gallery-slide img,
.gallery-slide:hover img,
.gallery-slide-link:hover img,
.gallery-slide-link:focus img,
.gallery-slide-link:active img {
  filter: none;
  opacity: 1;
}

/* Mobile: 2 slides visible */
@media (max-width: 768px) {
  .zone-1-red {
    padding-bottom: 1rem;
    ;
  }

  .gallery-slide {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .gallery-slider-track {
    gap: 8px;
  }

  .gallery-placeholder {
    height: 210px;
  }

  .gallery-slide img {
    height: 220px;
  }
}

/* ============================================================
   GALLERY PAGE — year filter, justified grid, lightbox
   ============================================================ */

/* Filter dropdown */
.gallery-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.gallery-year-select {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 2px solid #b22222;
  border-radius: 50px;
  background: #ffffff;
  color: #b22222;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23b22222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}

.gallery-year-select:hover {
  background-color: #ffffff;
  color: #b22222;
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(178, 34, 34, 0.18);
}

.gallery-year-select:focus {
  box-shadow: none;
}

.gallery-year-select:focus-visible,
.gallery-year-select:active {
  background-color: #ffffff;
  color: #b22222;
  box-shadow: none;
  outline: none;
}

.gallery-year-select option {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 8px;
}

/* Loading spinner */
.gallery-loading {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.gallery-loading.active {
  display: flex;
}

.gallery-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(178, 34, 34, 0.2);
  border-top: 3px solid #b22222;
  border-radius: 50%;
  animation: gallery-spinner-spin 0.8s linear infinite;
}

@keyframes gallery-spinner-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Justified grid layout */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 300px;
}

.gallery-grid-item {
  flex: 1 0 auto;
  min-width: 200px;
  max-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: none;
}

.gallery-grid-item:hover {
  transform: none;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: none;
}

.gallery-grid-item:hover img {
  transform: none;
  filter: none;
  opacity: 1;
}

/* Empty state */
.gallery-grid-empty {
  width: 100%;
  text-align: center;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #7A7268;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid-item {
    min-width: calc(50% - 4px);
    flex-basis: calc(50% - 4px);
  }

  .gallery-year-select {
    font-size: 0.8rem;
    padding: 10px 20px;
    padding-right: 40px;
  }

  .gallery-lightbox {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid-item {
    min-width: 100%;
    flex-basis: 100%;
  }
}

/* ============================================================
   FOOTER SECTION — black background
   ============================================================ */
.site-footer {
  background: #000000;
  padding: 64px 5vw 0;
  position: relative;
  z-index: 30;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Left: Brand logo + text */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo {
  width: auto;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.footer-brand-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Column headings */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1;
}

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* Contact items */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Back to top */
.footer-back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-back-to-top:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Gallery links (optional styling to match years) */
.footer-column .footer-links li a {
  display: inline-block;
}

/* ============================================================
   CONTACT HERO — full width, starts from top
   ============================================================ */
.contact-hero {
  width: 100%;
  aspect-ratio: 1920 / 640;
  margin: 0;
  padding: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contact-hero-banner {
  background-image: linear-gradient(rgba(15, 12, 10, 0.18), rgba(15, 12, 10, 0.18)), url('../images/contacts.webp');
}

/* ============================================================
   ABOUT PAGE HERO — full-width responsive image
   ============================================================ */
.about-page-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.about-page-hero img,
.gallery-page-hero img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 576px) {
  .contact-hero {
    background-position: center center;
  }

  .hero-video-fixed img {
    height: 100%;
    object-position: center center;
  }
}

/* Mobile: header (~80px) + hero + marquee (~110px) = 100dvh at scroll-top */
@media (max-width: 768px) {
  .hero-outer,
  .hero-sticky {
    height: calc(100vh - 195px);
    height: calc(100dvh - 195px);
    min-height: 320px;
  }

  /* Ensure slider track images scale to fill without distortion */
  .hero-slide-track img {
    object-position: center center;
  }
}

/* ============================================================
   CONTACT SECTION — white background, black text, Fira Sans
   ============================================================ */
.section-contact {
  padding: 80px 5vw 25px;
  position: relative;
  color: #2a2521;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

/* Left: Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-intro-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: #1f1b18;
  margin: 0;
}

.contact-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  color: #b22222;
  line-height: 1.14;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1px solid rgba(36, 32, 29, 0.14);
  color: #2f2924;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-item-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2a2521;
}

.contact-item-phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  color: #1f1b18;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-item-phone:hover {
  color: #b22222;
}

.contact-item-addr {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  color: #3d3630;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-ad-cta {
  margin-top: 18px;
  align-self: center;
  background: #b22222;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: clamp(18px, 2.4vw, 26px) clamp(36px, 5vw, 74px);
  min-width: clamp(330px, 44vw, 640px);
  border-radius: 999px;
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  transition: background-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.contact-ad-cta span {
  display: block;
  color: #ffffff;
  transition: color 0.28s ease;
}

.contact-ad-cta-wrap {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 8px;
}

.contact-ad-cta--blink {
  animation: contactCtaBlink 0.95s ease-in-out infinite;
}

@keyframes contactCtaBlink {

  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(178, 34, 34, 0), 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  50% {
    opacity: 0.76;
    transform: translateY(-4px) scale(1.035);
    box-shadow: 0 0 0 14px rgba(178, 34, 34, 0.18), 0 20px 34px rgba(178, 34, 34, 0.2);
  }
}

.contact-ad-cta:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
}

.contact-ad-cta:hover span {
  color: #ffffff;
}

/* Right: Map */
.contact-map {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Override broad .zone-2-light text rules so contact typography stays intentional */
.zone-2-light #section-contact .contact-intro-label,
.zone-2-light #section-contact .contact-item-label,
.zone-2-light #section-contact .contact-item-addr {
  color: #2a2521;
}

.zone-2-light #section-contact .contact-main-title {
  color: #b22222;
}

.zone-2-light #section-contact .contact-item-phone {
  color: #1f1b18;
}

.zone-2-light #section-contact .contact-item-addr {
  color: #3d3630;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(178, 34, 34, 0.08);
  box-shadow: 0 20px 48px rgba(178, 34, 34, 0.08);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.contact-form-input {
  min-height: 58px;
  border-radius: 0;
  border: 1px solid rgba(178, 34, 34, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #2a2521;
  font-family: 'Poppins', sans-serif;
  padding: 0.95rem 1rem;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form-input::placeholder {
  color: #8a7b70;
}

.contact-form-input:focus {
  border-color: rgba(178, 34, 34, 0.52);
  box-shadow: 0 0 0 0.22rem rgba(178, 34, 34, 0.08);
  transform: translateY(-1px);
}

textarea.contact-form-input {
  min-height: 170px;
  resize: vertical;
}

.contact-map-frame {
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(38, 20, 14, 0.12);
}

/* ============================================================
   RESPONSIVE FOOTER & GALLERY
   ============================================================ */
/* ============================================================
   RESPONSIVE CONTACT
   ============================================================ */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-map {
    max-width: 100%;
    justify-self: stretch;
    height: 350px;
  }

  .contact-main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .contact-item-phone {
    font-size: clamp(1.3rem, 4.8vw, 1.7rem);
  }

  .contact-item-addr {
    font-size: clamp(1rem, 2.7vw, 1.2rem);
  }

  .contact-ad-cta-wrap {
    justify-content: center;
    margin-top: 24px;
    padding-bottom: 4px;
  }

  .contact-ad-cta {
    min-width: 0;
    width: min(86vw, 440px);
    padding: 14px 20px;
    font-size: clamp(0.92rem, 3.4vw, 1.12rem);
    line-height: 1.25;
  }
}

@media (max-width: 576px) {
  .section-contact {
    padding: 58px 20px 24px;
  }

  .contact-info {
    gap: 18px;
  }

  .contact-intro-label {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .contact-main-title {
    font-size: clamp(1.72rem, 8.6vw, 2.15rem);
    line-height: 1.18;
    max-width: 100%;
  }

  .contact-details {
    gap: 22px;
    margin-top: 4px;
  }

  .contact-item {
    gap: 12px;
    min-width: 0;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .contact-item-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-item-label {
    font-size: 0.86rem;
  }

  .contact-item-phone {
    font-size: clamp(1.08rem, 5vw, 1.28rem);
    line-height: 1.25;
  }

  .contact-item-addr {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .contact-map {
    height: 320px;
    border-radius: 8px;
  }
}

@media (max-width: 390px) {
  .section-contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-main-title {
    font-size: clamp(1.55rem, 8vw, 1.9rem);
  }

  .contact-item-phone {
    font-size: 1.02rem;
  }

  .contact-map {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-ad-cta--blink {
    animation: none;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  /* Gallery responsive */
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 48px 5vw 0;
  }

  .footer-logo {
    max-width: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-content {
    flex-direction: column;
  }

  /* Gallery responsive */
  .gallery-grid {
    column-count: 1;
  }

  .section-gallery {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
}

/* ============================================================
   MARQUEE STRAP — editorial scrolling text banner
   Cultural heritage aesthetic: elegant, legible, refined
   ============================================================ */
.marquee-strap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #b22222;
  padding: 44px 0;
  z-index: 10;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
  will-change: transform;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 35s linear infinite;
  /* Hardware-accelerated transform for buttery smooth animation */
  transform: translate3d(0, 0, 0);
}

/* Primary marquee text uses Poppins */
.marquee-text-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  color: #FDFBF7;
  opacity: 1;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0.35em;
  padding: 10px 0;
}

/* Secondary marquee text uses Poppins */
.marquee-text-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  color: #FDFBF7;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0.35em;
  padding: 10px 0;
}

/* Image Group: wrapper holding two images side-by-side */
.marquee-image-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 2rem;
  flex-shrink: 0;
}

/* Marquee images: constrained height with blend mode for premium aesthetic */
.marquee-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
  filter: brightness(1.1) contrast(1.05);
}

/* Motif SVG: gold/brass separator between Bengali and English text */
.marquee-motif {
  height: 1.5em;
  width: auto;
  opacity: 1;
  margin: 0 2rem;
  flex-shrink: 0;
  /* Force gold/brass color via CSS filter */
  filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(500%) hue-rotate(10deg) brightness(95%) contrast(90%);
}

/* Infinite horizontal scroll — seamless loop at 50%
   Using translate3d forces GPU compositing for smooth rendering */
@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Pause on hover for readability */
.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .marquee-strap {
    padding: 30px 0;
  }

  .marquee-text-primary {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }

  .marquee-text-secondary {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    letter-spacing: 0.02em;
  }

  .marquee-image-group {
    margin: 0 1.2rem;
    gap: 0;
  }

  .marquee-img {
    height: 30px;
  }

  @keyframes marqueeScroll {
    0% {
      transform: translate3d(0, 0, 0);
    }

    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }

  .marquee-content {
    animation-duration: 28s;
  }
}

/* ============================================================
   GALLERY GRID
   Mobile: 2-column CSS grid (square tiles).
   Desktop: justified flex rows with uniform row height.
   ============================================================ */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 100%;
}

.masonry-item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 16px 36px rgba(38, 20, 14, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.masonry-item>a {
  display: block;
  width: 100%;
  height: 100%;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(38, 20, 14, 0.14);
}

.masonry-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.02);
}

@media (min-width: 768px) {
  .masonry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .masonry-item {
    flex: 1 1 auto;
    height: 240px;
    min-width: 200px;
    max-width: 100%;
  }

  .masonry-item img {
    aspect-ratio: auto;
  }

  /* Pads the last row so remaining items don't stretch absurdly wide */
  .masonry-grid::after {
    content: "";
    flex-grow: 1000;
  }
}

@media (min-width: 1200px) {
  .masonry-item {
    height: 280px;
  }
}
