/**
 * BAFA by Bluu — Main Stylesheet
 * Design system CSS. All colors use CSS custom properties set in functions.php
 * from Customizer values.
 */

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

:root {
  --gold: #D4A017;
  --gold-light: #F5D76E;
  --deep-black: #0A0A0A;
  --warm-black: #1A1714;
  --cream: #FAF6F0;
  --earth: #8B4513;
  --terracotta: #C65D3E;
  --dark-green: #2D4A22;
  --off-white: #F2EDE6;
  --text-dark: #1A1714;
  --text-light: #FAF6F0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo__img,
.footer-logo__img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

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

/* Reset WordPress menu-item wrappers */
.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links .current-menu-item > a::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--deep-black) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 0;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* ── Desktop Dropdown Submenus ───────────────────────────────────────────── */

.nav-links .menu-item-has-children {
  position: relative;
}

.nav-links .menu-item-has-children > a::before {
  display: none;
}

.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--warm-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.5rem 0;
  margin-top: 0.75rem;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
}

.nav-links .menu-item-has-children:hover > .sub-menu {
  display: block;
  animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-links .sub-menu li {
  display: block;
}

.nav-links .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links .sub-menu a::after {
  display: none !important;
}

.nav-links .sub-menu a:hover {
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
}

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

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-black);
  overflow: hidden;
}

.hero--has-image {
  background-size: cover;
  background-position: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 177.78vh; /* 16:9 aspect ratio */
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212,160,23,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(198,93,62,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 90%, rgba(139,69,19,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0A0A0A 0%, #1A1714 40%, #0F0D0A 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(212,160,23,0.08);
  border-radius: 50%;
  animation: heroOrbit 25s linear infinite;
}

.hero-pattern::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(198,93,62,0.06);
  border-radius: 50%;
  animation: heroOrbit 35s linear infinite reverse;
}

@keyframes heroOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-kente {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 3;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 24px, var(--gold) 24px, var(--gold) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, var(--gold) 24px, var(--gold) 25px);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.hero-accent-1, .hero-accent-2, .hero-accent-3 {
  position: absolute;
  z-index: 3;
}

.hero-accent-1 {
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212,160,23,0.12);
  transform: rotate(45deg);
  animation: accentFloat 8s ease-in-out infinite;
}

.hero-accent-2 {
  top: 25%;
  right: 20%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212,160,23,0.08);
  transform: rotate(20deg);
  animation: accentFloat 12s ease-in-out infinite reverse;
}

.hero-accent-3 {
  top: 50%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: rgba(212,160,23,0.06);
  transform: rotate(30deg);
  animation: accentFloat 6s ease-in-out infinite;
}

@keyframes accentFloat {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-year {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(212,160,23,0.04);
  line-height: 1;
  z-index: 3;
  letter-spacing: -5px;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 3rem;
  max-width: 850px;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  animation: heroReveal 1.2s ease-out;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  background: rgba(212, 160, 23, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  margin-bottom: 2rem;
  width: fit-content;
  animation: heroReveal 1.2s ease-out 0.2s both;
}

.hero-date-badge span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-date-badge .divider {
  width: 1px;
  height: 16px;
  background: var(--gold);
  opacity: 0.4;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  animation: heroReveal 1.2s ease-out 0.4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: heroReveal 1.2s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  animation: heroReveal 1.2s ease-out 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--deep-black);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,160,23,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-play-icon svg {
  margin-left: 2px;
}

.btn-secondary:hover .btn-play-icon {
  background: var(--gold);
  color: var(--deep-black);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--deep-black);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--deep-black);
  color: var(--gold);
  padding: 1.1rem 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-dark-gold {
  background: var(--deep-black);
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ═══════════ SECTION HEADINGS ═══════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-tag::before { right: calc(100% + 15px); }
.section-tag::after { left: calc(100% + 15px); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.section-title.light {
  color: white;
}

.section-title.light em {
  color: var(--gold);
}

/* ═══════════ PARTNERS ═══════════ */
.partners {
  background: var(--partners-bg, var(--deep-black));
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.partners-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--partners-label-color, rgba(255, 255, 255, 0.35));
  margin-bottom: 2rem;
}

.partners-track {
  width: 70%;
  margin: 0 auto;
}

.partners-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.partner-item:hover {
  opacity: 1;
}

.partner-item img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .partners-track { width: 85%; }
  .partners-scroll { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .partners-track { width: 90%; }
  .partners-scroll { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════ ABOUT ═══════════ */
.about {
  padding: 8rem 3rem;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 0;
  display: block;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 480px;
  background: linear-gradient(135deg, var(--warm-black), var(--earth));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-placeholder-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, var(--gold) 20px, var(--gold) 21px);
}

.about-placeholder-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-placeholder-logo {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-placeholder-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-text .section-tag {
  display: block;
  text-align: left;
}

.about-text .section-tag::before,
.about-text .section-tag::after {
  display: none;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item h4 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-item span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

/* ═══════════ HIGHLIGHT REEL ═══════════ */
.highlight-reel {
  padding: 6rem 3rem;
  background: var(--deep-black);
  position: relative;
}

.highlight-reel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(198,93,62,0.05) 0%, transparent 50%);
}

.highlight-video-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.highlight-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.2);
}

.highlight-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.highlight-caption {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ═══════════ VISA & TRAVEL ═══════════ */
.visa-section {
  padding: 8rem 3rem;
  background: var(--warm-black);
  position: relative;
  overflow: hidden;
}

.visa-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.08);
}

.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.visa-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.visa-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(to bottom right, var(--earth), var(--deep-black));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.visa-placeholder-dots {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 20px 20px;
}

.visa-placeholder-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.visa-placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.visa-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.visa-content h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.visa-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.visa-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.visa-checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.visa-checklist li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ═══════════ GALLERY ═══════════ */
.gallery {
  padding: 8rem 3rem;
  background: var(--cream);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.gallery-item:nth-child(2) { aspect-ratio: 1; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 1; }
.gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-placeholder {
  background: var(--warm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-cta,
.videos-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════ VIDEOS ═══════════ */
.videos {
  padding: 8rem 3rem;
  background: var(--off-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.video-card {
  background: white;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.video-card .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-info {
  padding: 1.5rem;
}

.video-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.video-card-info span {
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  padding: 8rem 3rem;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, var(--deep-black) 30px, var(--deep-black) 31px);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--deep-black);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(10,10,10,0.7);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 5rem 3rem 2rem;
  background: var(--deep-black);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h5 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-credit {
  max-width: 1300px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-credit p {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
}

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════ PAGE HERO ═══════════ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--deep-black);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Default fallback — overridden by inline style from ACF */
  background: rgba(10, 10, 10, 0.8);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: inherit;
  padding: 3rem;
  max-width: 800px;
}

.page-hero__breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a,
.page-hero__breadcrumb span {
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  color: var(--gold);
  opacity: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: inherit;
  line-height: 1.1;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.6;
  color: inherit;
}

/* ═══════════ PAGE CONTENT ═══════════ */
.page-content {
  padding: 5rem 3rem;
  background: var(--cream);
}

.page-content__inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-article__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.page-article__body h2,
.page-article__body h3,
.page-article__body h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-article__body p {
  margin-bottom: 1.5rem;
}

.page-article__body a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-article__body a:hover {
  color: var(--terracotta);
}

/* ═══════════ SINGLE POST (Magazine) ═══════════ */

.post-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.post-hero-meta__avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.post-hero-meta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.post-hero-meta__author {
  font-weight: 700;
  font-size: 0.95rem;
}

.post-hero-meta__details {
  font-size: 0.82rem;
  opacity: 0.65;
}

/* ── Article body ───────────────────────────── */
main.single-post {
  background: var(--cream);
  padding: 5rem 0 4rem;
}

.single-post__article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.single-post__body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.9;
  color: #2a2a2a;
}

.single-post__body > *:first-child {
  margin-top: 0;
}

.single-post__body p {
  margin-bottom: 1.75rem;
}

.single-post__body p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.85;
  padding-right: 0.5rem;
  padding-top: 0.15rem;
  color: var(--gold);
}

.single-post__body h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--deep-black);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.single-post__body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.single-post__body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.single-post__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.single-post__body a:hover {
  color: var(--terracotta);
}

.single-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 2rem 0;
}

.single-post__body figure {
  margin: 2.5rem 0;
}

.single-post__body figure img {
  margin: 0;
  width: 100%;
}

.single-post__body figcaption {
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

.single-post__body blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  background: rgba(212, 160, 23, 0.06);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
  line-height: 1.7;
}

.single-post__body blockquote p:last-child {
  margin-bottom: 0;
}

.single-post__body ul,
.single-post__body ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.single-post__body li {
  margin-bottom: 0.5rem;
}

.single-post__body pre {
  background: var(--deep-black);
  color: #e0e0e0;
  padding: 1.5rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 2rem 0;
}

.single-post__body code {
  font-size: 0.88em;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.single-post__body pre code {
  background: none;
  padding: 0;
}

.single-post__body hr {
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 3rem auto;
  max-width: 120px;
}

/* ── Wide images / gallery support ────────── */
.single-post__body .alignwide {
  margin-left: -8vw;
  margin-right: -8vw;
  max-width: calc(100% + 16vw);
  width: calc(100% + 16vw);
}

.single-post__body .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

.single-post__body .wp-block-gallery {
  margin: 2.5rem 0;
}

/* ── Tags ────────────────────────────────── */
.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.single-post__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #555;
  transition: all 0.3s ease;
}

.single-post__tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.06);
}

/* ── Author Box ──────────────────────────── */
.single-post__author-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.single-post__author-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.single-post__author-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.single-post__author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--deep-black);
  margin: 0.15rem 0 0.5rem;
}

.single-post__author-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ── Post Navigation ─────────────────────── */
.single-post__nav {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.single-post__nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.single-post__nav-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.single-post__nav-link--next {
  text-align: right;
}

.single-post__nav-direction {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.single-post__nav-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-black);
  line-height: 1.3;
}

/* ── Comments ────────────────────────────── */
.single-post__comments {
  max-width: 756px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.single-post__comments .comment-respond h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}

.single-post__comments textarea,
.single-post__comments input[type="text"],
.single-post__comments input[type="email"],
.single-post__comments input[type="url"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.single-post__comments textarea:focus,
.single-post__comments input:focus {
  outline: none;
  border-color: var(--gold);
}

.single-post__comments .form-submit .submit {
  background: var(--gold);
  color: var(--deep-black);
  border: none;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.single-post__comments .form-submit .submit:hover {
  background: var(--gold-light);
}


/* ═══════════ SINGLE GALLERY POST ═══════════ */

.gallery-single {
  background: var(--cream);
  padding: 5rem 0 4rem;
}

.gallery-single__article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-single__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.gallery-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.gallery-single__body figure {
  margin: 2rem 0;
}

.gallery-single__body figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.gallery-single__body .wp-block-gallery {
  margin: 2rem 0;
}

.gallery-single__body .wp-block-image {
  margin: 2rem 0;
}


/* ═══════════ BLOG ═══════════ */
.blog-archive {
  background: var(--cream);
  padding: 4rem 2rem 6rem;
}

.blog-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Featured Post (hero card on page 1) ─────────────────────────────────── */

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
  transition: box-shadow 0.4s ease;
}

.blog-featured:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.blog-featured__image-link {
  display: block;
}

.blog-featured__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

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

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.04);
}

.blog-featured__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, var(--warm-black), var(--earth));
}

.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.03) 100%);
}

.blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.blog-featured__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  background: rgba(212, 160, 23, 0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  width: fit-content;
}

.blog-featured__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.blog-featured__title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-featured__title a:hover {
  color: var(--gold);
}

.blog-featured__excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.blog-featured__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-featured__author {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.blog-featured__date {
  display: block;
  font-size: 0.78rem;
  color: #999;
}

/* ── Category Filter Bar ─────────────────────────────────────────────────── */

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.blog-filter {
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.blog-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.blog-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-black);
  font-weight: 600;
}

/* ── Post Cards Grid ─────────────────────────────────────────────────────── */

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

.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.post-card__image-link {
  display: block;
}

.post-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.06);
}

.post-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--warm-black) 0%, var(--earth) 100%);
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-card__title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card__title a:hover {
  color: var(--gold);
}

.post-card__excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.post-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-card__date {
  font-size: 0.78rem;
  color: #999;
}

.post-card__reading-time {
  font-size: 0.78rem;
  color: #bbb;
}

.post-card__reading-time::before {
  content: '\00b7';
  margin-right: 0.5rem;
}

.post-card__read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.post-card:hover .post-card__read-more {
  background: var(--gold);
  color: var(--deep-black);
  transform: translateX(4px);
}

/* ── Pagination ──────────────────────────────────────────────────────────── */

.archive-pagination {
  margin-top: 4rem;
  text-align: center;
}

.archive-pagination .nav-links {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.25s ease;
}

.archive-pagination a:hover {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
}

.archive-pagination .page-numbers.current {
  background: var(--gold);
  color: var(--deep-black);
  font-weight: 700;
}

.archive-pagination .prev,
.archive-pagination .next {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── Empty State ─────────────────────────────────────────────────────────── */

.no-posts {
  text-align: center;
  padding: 5rem 2rem;
}

.no-posts__icon {
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.no-posts h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.no-posts p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ═══════════ 404 PAGE ═══════════ */
.page-404__inner {
  text-align: center;
}

.page-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ═══════════ TEAM PAGE ═══════════ */
.team-section {
  padding: 6rem 3rem;
  background: var(--cream);
}

.team-section__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  cursor: pointer;
  text-align: center;
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.team-card__image {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

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

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--warm-black), var(--earth));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__placeholder span {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 0.5px;
}

/* ── Off-canvas overlay ─────────────────────────── */
.team-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.team-offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Off-canvas panel ───────────────────────────── */
.team-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 520px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.team-offcanvas.active {
  transform: translateX(0);
}

.team-offcanvas__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--deep-black);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.team-offcanvas__close:hover {
  background: var(--gold);
  color: var(--deep-black);
}

.team-offcanvas__inner {
  padding: 2.5rem;
}

.team-offcanvas__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.team-offcanvas__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
}

.team-offcanvas__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-offcanvas__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--warm-black), var(--earth));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
}

.team-offcanvas__header-text {
  flex: 1;
}

.team-offcanvas__content {
  padding: 0;
}

.team-offcanvas__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.team-offcanvas__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.team-offcanvas__social {
  display: flex;
  gap: 0.8rem;
}

.team-offcanvas__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--deep-black);
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.team-offcanvas__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-black);
}

.team-offcanvas__social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.team-offcanvas__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 1.5rem;
}

.team-offcanvas__bio p {
  margin-bottom: 1rem;
}

.team-offcanvas__bio:empty::after {
  content: 'Full bio coming soon.';
  color: #999;
  font-style: italic;
}

/* ═══════════ REGISTER OFF-CANVAS ═══════════ */

.register-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.register-overlay.active {
  opacity: 1;
  visibility: visible;
}

.register-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;
  background: var(--deep-black);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.register-offcanvas.active {
  transform: translateX(0);
}

.register-offcanvas__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.register-offcanvas__close:hover {
  background: var(--gold);
  color: var(--deep-black);
}

.register-offcanvas__inner {
  padding: 3rem 2.5rem 2.5rem;
}

.register-offcanvas__header {
  margin-bottom: 2.5rem;
}

.register-offcanvas__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.register-offcanvas__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.register-offcanvas__sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.register-offcanvas__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.register-ticket-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.register-ticket-card:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
  transform: translateX(4px);
}

.register-ticket-card__label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.register-ticket-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.register-ticket-card__arrow {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.register-ticket-card:hover .register-ticket-card__arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .about-grid,
  .visa-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }

  .videos-grid { grid-template-columns: 1fr; max-width: 600px; }

  .team-grid { grid-template-columns: repeat(3, 1fr); }

  .posts-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.2rem;
  }

  /* Mobile dropdown: override desktop absolute positioning */
  .nav-links .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem;
    margin-top: 0;
    display: none;
  }

  .nav-links .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
    animation: none;
  }

  .nav-links .sub-menu a {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-links .sub-menu a:hover {
    background: transparent;
    color: var(--gold);
  }

  .hero-content {
    padding: 0 1.5rem 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-accent-1,
  .hero-accent-2,
  .hero-accent-3 {
    display: none;
  }

  .hero-year {
    font-size: 6rem !important;
    right: 5%;
    opacity: 0.6;
  }

  .about,
  .highlight-reel,
  .visa-section,
  .gallery,
  .videos,
  .cta-banner,
  .footer,
  .page-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .about-image-placeholder {
    aspect-ratio: 4/3;
    max-height: 350px;
  }

  .visa-image-placeholder {
    aspect-ratio: 16/10;
    max-height: 300px;
  }

  .stat-item h4 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .team-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .section-tag::before,
  .section-tag::after {
    display: none;
  }

  .page-hero__content {
    padding: 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
}

/* ═══════════ ABOUT PAGE ═══════════ */

/* Multi-paragraph intro text */
.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.4rem;
}
.about-intro-text p:last-child { margin-bottom: 0; }

/* Mission — dark, centered pull-quote */
.about-mission {
  padding: 7rem 3rem;
  background: var(--warm-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.06);
  pointer-events: none;
}
.about-mission__deco {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.5;
}
.about-mission__body {
  max-width: 920px;
  margin: 0 auto;
}
.about-mission__body p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Vision — light, centered pull-quote */
.about-vision {
  padding: 7rem 3rem;
  background: var(--off-white);
  text-align: center;
}
.about-vision__deco {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.5;
}
.about-vision__body {
  max-width: 920px;
  margin: 0 auto;
}
.about-vision__body p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.78;
  color: var(--text-dark);
  margin: 0;
}

/* Dark variant of the standard .about / .about-grid section */
.about--dark {
  background: var(--warm-black);
  overflow: hidden;
  position: relative;
}
.about--dark::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.06);
  pointer-events: none;
}
.about--dark .about-text h2       { color: white; }
.about--dark .about-text h2 em    { color: var(--gold); }
.about--dark .about-text p        { color: rgba(255,255,255,0.65); }
.about--dark .about-image-accent  { border-color: rgba(212,160,23,0.4); }

/* Responsive */
@media (max-width: 768px) {
  .about-mission,
  .about-vision { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 480px) {
  .about-mission,
  .about-vision { padding: 3rem 1rem; }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 0 1rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-date-badge {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem 1.2rem;
  }

  .hero-date-badge .divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-dark {
    width: 100%;
    justify-content: center;
  }

  .about,
  .highlight-reel,
  .visa-section,
  .gallery,
  .videos,
  .cta-banner,
  .footer,
  .page-content {
    padding: 3rem 1rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-image-placeholder {
    aspect-ratio: 3/2;
    max-height: 280px;
  }

  .visa-image-placeholder {
    aspect-ratio: 16/9;
    max-height: 240px;
  }

  .footer-grid {
    gap: 2rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__image {
    min-height: 240px;
  }

  .blog-featured__content {
    padding: 2rem;
  }

  .blog-archive {
    padding: 3rem 1rem 4rem;
  }

  .team-section {
    padding: 3rem 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .team-card__name {
    font-size: 0.95rem;
  }

  .team-card__role {
    font-size: 0.75rem;
  }

  .team-offcanvas {
    width: 100vw;
    max-width: 100vw;
  }

  /* Single post responsive */
  main.single-post {
    padding: 3rem 0 2rem;
  }

  .single-post__article {
    padding: 0 1rem;
  }

  .single-post__nav {
    padding: 0 1rem;
  }

  .single-post__body {
    font-size: 1.05rem;
  }

  .single-post__body p:first-of-type::first-letter {
    font-size: 3rem;
  }

  .single-post__body blockquote {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
  }

  .single-post__body .alignwide {
    margin-left: -1rem;
    margin-right: -1rem;
    max-width: calc(100% + 2rem);
    width: calc(100% + 2rem);
  }

  .single-post__author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }

  .single-post__nav {
    grid-template-columns: 1fr;
  }

  .single-post__nav-link {
    padding: 1.25rem;
  }

  .single-post__nav-link--next {
    text-align: left;
  }

  .single-post__comments {
    padding: 1.5rem;
  }

  /* Single gallery post responsive */
  .gallery-single {
    padding: 3rem 0 2rem;
  }

  .gallery-single__article {
    padding: 0 1rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY ARCHIVE (card grid)
   ═══════════════════════════════════════════════════════════════════════════ */

.gallery-archive {
  background: var(--cream);
  padding: 4rem 2rem 6rem;
}

.gallery-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep-black);
  aspect-ratio: 4 / 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.25);
}

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

.gallery-card__link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
}

.gallery-card__image {
  position: absolute;
  inset: 0;
}

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

.gallery-card:hover .gallery-card__image img {
  transform: scale(1.06);
}

.gallery-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--warm-black);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.25) 45%,
    transparent 70%
  );
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 0.9;
}

.gallery-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.gallery-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.gallery-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}


/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY PAGE (legacy image grid — retained for reference)
   ═══════════════════════════════════════════════════════════════════════════ */

.gallery-section {
  padding: 4rem 2rem 6rem;
  background: var(--cream);
  min-height: 50vh;
}

.gallery-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Filter Buttons ──────────────────────────────────────────────────────── */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gallery-filter {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover {
  background: var(--gold);
  color: var(--deep-black);
}

.gallery-filter.active {
  background: var(--gold);
  color: var(--deep-black);
}

.gallery-filter--year {
  font-size: 1.1rem;
  padding: 0.7rem 2rem;
}

.gallery-day-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filter--day {
  font-size: 0.85rem;
  padding: 0.45rem 1.2rem;
  border-width: 1.5px;
}

/* ── Year Panels ─────────────────────────────────────────────────────────── */

.gallery-year-panel {
  display: none;
}

.gallery-year-panel.active {
  display: block;
}

/* ── Image Grid ──────────────────────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: var(--warm-black);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__zoom {
  font-size: 2rem;
  color: #fff;
}

.gallery-item.hidden {
  display: none;
}

/* ── Empty State ─────────────────────────────────────────────────────────── */

.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.gallery-empty p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.7;
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s;
}

.gallery-lightbox__close:hover {
  color: var(--gold);
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 3.5rem;
  cursor: pointer;
  z-index: 10;
  padding: 1rem;
  transition: color 0.2s;
  line-height: 1;
}

.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  color: var(--gold);
}

.gallery-lightbox__prev {
  left: 1rem;
}

.gallery-lightbox__next {
  right: 1rem;
}

.gallery-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.gallery-lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

/* ── Gallery Archive Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .gallery-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-archive {
    padding: 3rem 1rem 4rem;
  }

  .gallery-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-card__title {
    font-size: 0.95rem;
  }

  .gallery-filter--year {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
  }

  .gallery-lightbox__prev,
  .gallery-lightbox__next {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-posts-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-page {
  padding: 5rem 2rem 6rem;
  background: var(--cream);
}

.contact-page__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Intro ───────────────────────────────────────────────────────────────── */

.contact-intro {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-intro__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.75;
}

/* ── Two-column Grid ─────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* ── Form Column ─────────────────────────────────────────────────────────── */

.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dark);
  opacity: 0.6;
  font-family: var(--font-body);
}

/* ── Contact Form 7 Styling ──────────────────────────────────────────────── */

.contact-form-wrap .wpcf7 {
  font-family: var(--font-body);
}

.contact-form-wrap .wpcf7 p {
  margin-bottom: 1.25rem;
}

.contact-form-wrap .wpcf7 label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="url"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 input[type="number"],
.contact-form-wrap .wpcf7 input[type="date"],
.contact-form-wrap .wpcf7 select,
.contact-form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 select:focus,
.contact-form-wrap .wpcf7 textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.contact-form-wrap .wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-wrap .wpcf7 input[type="submit"],
.contact-form-wrap .wpcf7 button[type="submit"] {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-black);
  border: none;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form-wrap .wpcf7 input[type="submit"]:hover,
.contact-form-wrap .wpcf7 button[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* CF7 validation messages */
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: var(--terracotta);
  margin-top: 0.3rem;
}

.contact-form-wrap .wpcf7-response-output {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.contact-form-wrap .wpcf7-mail-sent-ok {
  border-color: #2D4A22;
  background: rgba(45, 74, 34, 0.08);
  color: #2D4A22;
}

.contact-form-wrap .wpcf7-validation-errors,
.contact-form-wrap .wpcf7-spam-blocked {
  border-color: var(--terracotta);
  background: rgba(198, 93, 62, 0.06);
  color: var(--terracotta);
}

/* CF7 spinner */
.contact-form-wrap .wpcf7-spinner {
  margin-left: 1rem;
}

/* ── Details Column ──────────────────────────────────────────────────────── */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-details__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--deep-black);
  border-radius: 10px;
}

.contact-details__item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-details__item a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.contact-details__item a:hover {
  color: var(--gold);
}

.contact-details__item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0.8;
}

/* ── Department Emails List ───────────────────────────────────────────────── */

.contact-emails {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-emails li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-emails__dept {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.5;
}

.contact-emails a {
  font-size: 0.9rem;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.contact-social a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Map ─────────────────────────────────────────────────────────────────── */

.contact-map {
  margin-top: 4rem;
}

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

/* ── Contact Page Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .contact-page {
    padding: 3rem 1rem 4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .contact-details {
    order: -1;
  }

  .contact-map {
    margin-top: 3rem;
  }

  .contact-map iframe {
    height: 300px;
  }
}
