/* ===== CSS Variables ===== */
:root {
  --color-primary: #003399;
  --color-primary-dark: #002A7A;
  --color-primary-light: #2E57A9;
  --color-gold: #C9A227;
  --color-gold-light: #E8D48B;
  --color-cream: #FAF6F0;
  --color-warm-white: #FFFDF9;
  --color-section-light: #FEF5ED;
  --color-section-warm: #F6EEE3;
  --color-dark: #1A1410;
  --color-text: #3D3229;
  --color-text-muted: #6B5E52;
  --color-border: #E8DFD4;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 20, 16, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 20, 16, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --top-bar-height: 36px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-warm-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-header.light h2,
.section-header.light p {
  color: var(--color-cream);
}

.section {
  padding: 100px 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    min-height: var(--top-bar-height);
  }

  html {
    scroll-padding-top: calc(var(--top-bar-height) + var(--header-height));
  }
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-link:hover { color: var(--color-gold-light); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 253, 249, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .header { top: var(--top-bar-height); }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.header.scrolled .logo-icon {
  filter: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-dark);
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.header:not(.scrolled) .logo-text strong,
.header:not(.scrolled) .logo-text small {
  color: #fff;
}

.header:not(.scrolled) .nav a {
  color: rgba(255, 255, 255, 0.9);
}

.nav {
  display: none;
  gap: 28px;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-admin-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.header:not(.scrolled) .nav-admin-link {
  color: rgba(255, 255, 255, 0.85);
}

.nav-admin-link:hover {
  color: var(--color-gold);
}

.header:not(.scrolled) .nav-admin-link:hover {
  color: var(--color-gold-light);
}

.header:not(.scrolled) .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
}

.header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) { opacity: 0; }

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 1023px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-warm-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav {
    top: calc(var(--top-bar-height) + var(--header-height));
  }
}

@media (max-width: 1023px) {

  .nav.open {
    display: flex;
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.25rem;
    color: var(--color-dark) !important;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 130%;
  min-width: 230vh;
  transform: translate(-50%, -50%) scale(1.35);
  border: none;
  pointer-events: none;
  z-index: 0;
}

.hero-video-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-dark);
  pointer-events: none;
  transition: opacity 0.8s ease, background 0.8s ease;
}

.hero.hero-loading .hero-video-shield {
  opacity: 1;
}

.hero.hero-video-ready .hero-video-shield {
  opacity: 0;
  visibility: hidden;
}

.hero-video-blocker {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: transparent;
  pointer-events: none;
  touch-action: none;
}

.hero.hero-video-ready .hero-video-blocker {
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.25) 0%,
    rgba(26, 20, 16, 0.35) 50%,
    rgba(26, 20, 16, 0.45) 100%
  );
  transition: background 0.8s ease;
}

.hero.hero-loading .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.55) 0%,
    rgba(26, 20, 16, 0.65) 50%,
    rgba(26, 20, 16, 0.75) 100%
  );
}

.hero.hero-video-ready .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.1) 0%,
    rgba(26, 20, 16, 0.16) 50%,
    rgba(26, 20, 16, 0.24) 100%
  );
}

.hero-static-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero.hero-static .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.45) 0%,
    rgba(26, 20, 16, 0.55) 50%,
    rgba(26, 20, 16, 0.65) 100%
  );
}

.hero.hero-static .hero-content {
  opacity: 1;
  transform: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.hero-content.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
}

.hero-label {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== About ===== */
.about {
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-main {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 100%;
  min-height: 300px;
  box-shadow: var(--shadow-md);
}

.about-img-secondary {
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 180px;
  box-shadow: var(--shadow-sm);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: var(--color-warm-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ===== Accommodation ===== */
.room-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.room-tab {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  transition: all var(--transition);
}

.room-tab:hover,
.room-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.room-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.room-panel.active {
  display: grid;
}

@media (min-width: 768px) {
  .room-panel { grid-template-columns: 1.1fr 1fr; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.room-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26, 20, 16, 0.85);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.room-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.room-details h3 { margin-bottom: 8px; }

.room-size {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.room-details > p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.amenities-list li {
  background: var(--color-cream);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* ===== Video Tour ===== */
.video-tour {
  background: var(--color-dark);
  color: #fff;
}

.video-tour .section-header h2,
.video-tour .section-header p {
  color: var(--color-cream);
}

.video-tour .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.video-credit a {
  color: var(--color-gold-light);
}

.video-credit a:hover {
  text-decoration: underline;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}

.video-card h3 {
  color: var(--color-cream);
  margin: 16px 0 8px;
  font-size: 1.15rem;
}

.video-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

.programs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.programs-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.achievements {
  background: var(--color-section-warm);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .achievements-grid { grid-template-columns: repeat(4, 1fr); }
}

.achievement-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.achievement-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.achievement-label {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.about-content a {
  color: var(--color-primary);
  font-weight: 500;
}

.about-content a:hover {
  text-decoration: underline;
}

.contact-details a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--color-primary-dark);
}

/* ===== Dining / Campus Facilities ===== */
.dining {
  background: var(--color-section-light);
}

.dining-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .dining-grid { grid-template-columns: repeat(3, 1fr); }
}

.dining-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dining-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dining-img {
  height: 220px;
  overflow: hidden;
}

.dining-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dining-card:hover .dining-img img {
  transform: scale(1.08);
}

.dining-body {
  padding: 28px;
}

.dining-body h3 {
  margin-bottom: 12px;
}

.dining-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== Experiences ===== */
.experiences {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2C2218 100%);
  color: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .experience-grid { grid-template-columns: repeat(3, 1fr); }
}

.experience-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.difficulty {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.difficulty.easy { background: rgba(76, 175, 80, 0.2); color: #81C784; }
.difficulty.moderate { background: rgba(255, 193, 7, 0.2); color: #FFD54F; }
.difficulty.hard { background: rgba(244, 67, 54, 0.2); color: #EF9A9A; }

.experience-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.experience-note {
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ===== Events / Booking ===== */
.events {
  background: var(--color-section-light);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}

.events-content h2 { margin-bottom: 20px; }

.events-content > p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.events-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.events-features li strong {
  color: var(--color-dark);
}

.events-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.events-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.events-gallery img:first-child {
  grid-column: span 2;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.events-gallery img:not(:first-child) {
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== Gallery ===== */
.gallery {
  background: var(--color-section-warm);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== Reviews ===== */
.reviews {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.review-carousel {
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
}

.review-track {
  position: relative;
  min-height: 200px;
}

.review-card {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.review-card.active { display: block; }

.review-card p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 28px;
}

.review-card footer strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.dot.active {
  background: var(--color-gold-light);
  transform: scale(1.2);
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .review-stats { grid-template-columns: repeat(4, 1fr); }
}

.review-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}

.review-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Highlights ===== */
.highlights {
  background: var(--color-cream);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}

.highlights-content h2 { margin-bottom: 20px; }

.highlights-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.highlights-list {
  margin-top: 24px;
}

.highlights-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.highlights-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.8rem;
}

.highlights-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlights-images img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 180px;
  box-shadow: var(--shadow-sm);
}

.highlights-images img:first-child {
  grid-column: span 2;
  height: 240px;
}

/* ===== FAQ ===== */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.faq-cat {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  transition: all var(--transition);
}

.faq-cat:hover,
.faq-cat.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 60px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  display: none;
}

.faq-item.active { display: block; }

.faq-item summary {
  padding: 20px 0;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-cta {
  text-align: center;
  background: var(--color-cream);
  padding: 48px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h3 { margin-bottom: 8px; }

.faq-cta p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.faq-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  color: var(--color-text-muted);
}

.contact-details svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.contact-form {
  background: var(--color-warm-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-warm-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea { resize: vertical; }

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer .logo-text strong { color: #fff; }
.footer .logo-text small { color: rgba(255, 255, 255, 0.5); }

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-gold-light);
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-legal a:hover { color: var(--color-gold-light); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--color-dark);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 0.9rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
