/* ============================================================
   THE WANN — Fine Dining · Lounge · Luxury Restaurant 2026
   Design: Dark Elegant · Wine Red · Gold Accent
   ============================================================ */

:root {
  --wine: #8F1012;
  --wine-dark: #5B080A;
  --gold: #DB9347;
  --gold-bronze: #8B4513;
  --gold-light: #FFDFAD;
  --bg: #111111;
  --bg-card: #1b1b1b;
  --border-gold: rgba(219, 147, 71, 0.35);
  --text-title: #ffffff;
  --text-body: #c7c7c7;
  --text-muted: #8a8a8a;
  --overlay: rgba(0, 0, 0, 0.6);
  --glass: rgba(17, 17, 17, 0.75);
  --font-display: "Cormorant Garamond", "Cinzel", Georgia, serif;
  --font-body: "Poppins", "Inter", system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --header-h: 88px;
  --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-luxury: 0 24px 60px rgba(0, 0, 0, 0.45);
  --glow-gold: 0 0 30px rgba(219, 147, 71, 0.4);
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
}
.section-sm {
  padding: 80px 0;
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--text-title);
}

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

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--border-gold);
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-bronze), var(--gold-light));
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(350%);
  }
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.85;
}

.section-header {
  margin-bottom: 64px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-desc {
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

.gold-line.left {
  margin: 20px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-bronze) 0%,
    var(--gold) 50%,
    var(--gold-light) 100%
  );
  color: var(--bg);
  box-shadow: var(--glow-gold);
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-gold:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover::before {
  left: 150%;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text-title);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.btn-wine {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--text-title);
  border: 1px solid var(--border-gold);
}

.btn-wine:hover {
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px;
  max-width: 1400px;
  margin: 0 auto;
  transition: height var(--transition);
}

.site-header.scrolled .header-inner {
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-title);
  white-space: nowrap;
}

.logo em {
  font-style: normal;
  color: var(--gold);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-gold);
  z-index: 1100;
  padding: 100px 40px 40px;
  transition: right var(--transition);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition);
}

.mobile-nav-close:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-title);
  border-bottom: 1px solid var(--border-gold);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero Video ---------- */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.swiper-hero-video .swiper-slide {
  height: 100%;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
  pointer-events: none;
}

.swiper-pagination-hero {
  bottom: 100px !important;
  z-index: 3 !important;
}

.swiper-pagination-hero .swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.hero-video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.45);
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-video-prev {
  left: 20px;
}

.hero-video-next {
  right: 20px;
}

.hero-video-nav:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

@media (max-width: 767px) {
  .hero-video-nav {
    display: none;
  }
  .swiper-pagination-hero {
    bottom: 28px !important;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text-title);
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-slogan {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: rgba(27, 27, 27, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-luxury);
  transform: translateY(-6px);
}

/* ---------- About Split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: visible;
  perspective: 1200px;
}

.about-image-tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.about-image-glow {
  position: absolute;
  inset: 8% 4%;
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 42%,
    rgba(219, 147, 71, 0.42) 0%,
    rgba(219, 147, 71, 0.18) 35%,
    transparent 72%
  );
  filter: blur(28px);
  pointer-events: none;
  transform: translateZ(-20px);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent;
  display: block;
  filter: drop-shadow(0 0 22px rgba(219, 147, 71, 0.22));
  transform: translateZ(28px);
  backface-visibility: hidden;
}

/* Empire-style sparkle burst (rotate + scale pulse) */
.about-image-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translateZ(36px);
}

.about-image-stars .star {
  position: absolute;
}

.about-image-stars .star i {
  display: block;
  width: 34px;
  height: 34px;
  background:
    radial-gradient(circle at center, #fff 0%, var(--gold-light) 18%, transparent 52%),
    conic-gradient(
      from 0deg,
      transparent 0deg 76deg,
      rgba(255, 255, 255, 0.95) 76deg 84deg,
      transparent 84deg 166deg,
      rgba(255, 223, 173, 0.95) 166deg 174deg,
      transparent 174deg 256deg,
      rgba(255, 255, 255, 0.9) 256deg 264deg,
      transparent 264deg 346deg,
      rgba(255, 223, 173, 0.9) 346deg 354deg,
      transparent 354deg 360deg
    );
  filter: blur(0.4px) drop-shadow(0 0 6px var(--gold)) drop-shadow(0 0 14px rgba(255, 223, 173, 0.65));
  animation: starBurst 1.75s linear infinite;
}

.about-image-stars .star:nth-child(1) {
  top: 6%;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.about-image-stars .star:nth-child(1) i {
  animation-delay: 0s;
}
.about-image-stars .star:nth-child(2) {
  top: 38%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.about-image-stars .star:nth-child(2) i {
  width: 42px;
  height: 42px;
  animation-delay: 0.45s;
}
.about-image-stars .star:nth-child(3) {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%) translateY(20%);
}
.about-image-stars .star:nth-child(3) i {
  animation-delay: 0.9s;
}
.about-image-stars .star:nth-child(4) {
  top: 22%;
  left: 8%;
}
.about-image-stars .star:nth-child(4) i {
  width: 26px;
  height: 26px;
  animation-delay: 1.2s;
}
.about-image-stars .star:nth-child(5) {
  top: 18%;
  right: 6%;
}
.about-image-stars .star:nth-child(5) i {
  width: 28px;
  height: 28px;
  animation-delay: 1.55s;
}

@keyframes starBurst {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.45);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(0);
    opacity: 0;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border-gold);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Featured Dishes ---------- */
.dishes-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.dish-featured {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.dish-featured img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dish-featured:hover img {
  transform: scale(1.06);
}

.dish-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.dish-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover img {
  transform: scale(1.08);
}

.dish-card-body {
  padding: 24px;
  background: var(--bg-card);
}

.dish-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.dish-card-body p {
  font-size: 0.9rem;
  margin: 12px 0 16px;
  color: var(--text-muted);
}

/* ---------- Homepage Menu Coverflow 3D ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.menu-coverflow-stage {
  position: relative;
  overflow: hidden;
  padding: 8px 0 0;
  width: 100%;
}

.menu-tab-panel.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  animation: menuTabFade 0.5s ease;
}

@keyframes menuTabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-coverflow-stage::before,
.menu-coverflow-stage::after {
  content: "";
  position: absolute;
  top: 72px;
  bottom: 16px;
  width: min(100px, 7vw);
  z-index: 2;
  pointer-events: none;
}

.menu-coverflow-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-card) 15%, transparent 100%);
}

.menu-coverflow-stage::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-card) 15%, transparent 100%);
}

.menu-tab-panels {
  position: relative;
}

.menu-tab-panel {
  display: none;
}

.menu-coverflow-nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 28px);
  width: 100%;
  max-width: 320px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 3;
}

.menu-section .swiper-menu-3d {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 16px;
  overflow: hidden;
}

.menu-section .swiper-menu-3d .swiper-slide {
  width: clamp(240px, 32vw, 380px);
  transition: filter 0.45s ease;
}

.menu-section .swiper-menu-3d .swiper-slide:not(.swiper-slide-active) {
  filter: brightness(0.5) saturate(0.8);
}

.menu-coverflow-card {
  position: relative;
  height: clamp(420px, 55vw, 620px);
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 0 36px rgba(219, 147, 71, 0.16);
  transition: box-shadow var(--transition);
  background: #0a0a0a;
}

.menu-coverflow-card::before {
  content: "";
  position: absolute;
  inset: 6% 4%;
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 42%,
    rgba(219, 147, 71, 0.38) 0%,
    rgba(219, 147, 71, 0.14) 40%,
    transparent 72%
  );
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.55;
  transition: opacity var(--transition);
}

.swiper-slide-active .menu-coverflow-card::before {
  opacity: 1;
}

.menu-coverflow-link {
  display: block;
  height: 100%;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}

.menu-coverflow-card--page {
  position: relative;
}

.menu-coverflow-card--page img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 0 20px rgba(219, 147, 71, 0.2));
}

.menu-coverflow-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.45);
  color: var(--gold);
  font-size: 1.75rem;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.menu-coverflow-link:hover .menu-coverflow-zoom,
.swiper-slide-active .menu-coverflow-link:hover .menu-coverflow-zoom {
  opacity: 1;
}

.swiper-slide-active .menu-coverflow-card {
  box-shadow: 0 0 48px rgba(219, 147, 71, 0.35);
}

.menu-coverflow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-gold);
  background: rgba(17, 17, 17, 0.55);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-coverflow-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.menu-coverflow-pagination {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  min-width: 72px;
  text-align: center;
}

.menu-coverflow-pagination .swiper-pagination-current {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
}

.menu-section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Menu gallery (thuc-don.html) ---------- */
.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.menu-gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 0 28px rgba(219, 147, 71, 0.12);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity 0.3s ease;
}

.menu-gallery-item::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  z-index: 0;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(219, 147, 71, 0.32) 0%,
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.menu-gallery-item:hover::before {
  opacity: 1;
}

.menu-gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 0 16px rgba(219, 147, 71, 0.18));
}

.menu-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(219, 147, 71, 0.28);
}

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

/* ---------- Floating contact (Zalo / Hotline / Messenger) ---------- */
.float-contacts {
  position: fixed;
  right: 32px;
  bottom: 96px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-luxury);
  animation: floatContactShake 2.8s ease-in-out infinite;
  transition:
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.float-contact:nth-child(1) {
  animation-delay: 0s;
}
.float-contact:nth-child(2) {
  animation-delay: 0.45s;
}
.float-contact:nth-child(3) {
  animation-delay: 0.9s;
}

.float-contact__label {
  display: none;
}

.float-contact:hover {
  animation: none;
  transform: translateX(-4px) scale(1.08);
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: var(--glow-gold);
}

.float-contact--zalo {
  animation:
    floatContactShake 2.8s ease-in-out infinite,
    floatContactPulse 2.2s ease-out infinite;
}

.float-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}

.float-contact:hover .float-contact__icon {
  color: var(--gold-light);
}

.float-contact__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.float-contact--hotline {
  border-color: rgba(219, 147, 71, 0.55);
}

@keyframes floatContactShake {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  8% {
    transform: rotate(-10deg) translateX(-1px);
  }
  16% {
    transform: rotate(10deg) translateX(1px);
  }
  24% {
    transform: rotate(-8deg) translateX(-1px);
  }
  32% {
    transform: rotate(8deg) translateX(1px);
  }
  40%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
}

@keyframes floatContactPulse {
  0% {
    box-shadow: var(--shadow-luxury);
  }
  50% {
    box-shadow:
      var(--shadow-luxury),
      0 0 0 6px rgba(219, 147, 71, 0.12);
  }
  100% {
    box-shadow: var(--shadow-luxury);
  }
}

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

/* ---------- Space Gallery Strip ---------- */
.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.space-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  border: 1px solid var(--border-gold);
}

.space-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.space-item:hover img {
  transform: scale(1.1);
}

.space-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(106, 0, 21, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.space-item:hover .space-item-overlay {
  opacity: 1;
}

.space-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-title);
}

/* ---------- Chef Section ---------- */
.chef-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.chef-photo {
  position: relative;
}

.chef-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(20%);
}

.chef-photo-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--wine);
  border: 1px solid var(--border-gold);
  padding: 28px 32px;
  text-align: center;
}

.chef-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.chef-role {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.chef-name {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.chef-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.6;
}

/* ---------- Events ---------- */
.events-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.events-row:has(.event-card:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

.event-card {
  display: block;
  padding: 40px 28px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.event-card:hover {
  background: linear-gradient(180deg, var(--bg-card), rgba(106, 0, 21, 0.15));
  transform: translateY(-8px);
  box-shadow: var(--glow-gold);
}

.event-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  writing-mode: horizontal-tb;
  white-space: normal;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-slide {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-slide:hover {
  border-color: rgba(219, 147, 71, 0.65);
  box-shadow: var(--glow-gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--text-title);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
}

.testimonial-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: left;
}

.swiper-testimonials {
  padding-bottom: 56px !important;
  overflow: hidden;
}

.swiper-testimonials .swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

/* ---------- Booking Section ---------- */
.booking-section {
  background: linear-gradient(
    135deg,
    var(--wine) 0%,
    var(--bg) 50%,
    var(--wine-dark) 100%
  );
  border-block: 1px solid var(--border-gold);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--text-title);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-control.error {
  border-color: #ef4444;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

/* ---------- News Grid ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.news-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--wine);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border-gold);
}

.news-body {
  padding: 28px;
}

.news-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.news-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.news-card:hover .news-body h3 {
  color: var(--gold);
}

.news-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Partners ---------- */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  opacity: 0.5;
}

.partner-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: all var(--transition);
}

.partner-item:hover {
  opacity: 1;
  color: var(--gold);
}

/* ---------- Contact Mini ---------- */
.contact-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-mini-item {
  text-align: center;
  padding: 40px 24px;
}

.contact-mini-item i {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-mini-item h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-gold);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-hours li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-hours span:last-child {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Page Hero (inner) ---------- */
.page-hero {
  padding: 180px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, rgba(106, 0, 21, 0.3) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80")
    center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* ---------- Menu Page ---------- */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-gold);
}

.menu-item-img {
  height: 220px;
  overflow: hidden;
}

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

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

.menu-item-body {
  padding: 24px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.menu-item-header h3 {
  font-size: 1.2rem;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ---------- Gallery Masonry ---------- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(106, 0, 21, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--wine);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ---------- Cursor glow (desktop) ---------- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

@media (max-width: 991px) {
  .cursor-glow {
    display: none;
  }
}

/* ------------------------------------- */
/* EVENTS PAGE STYLES */
/* ------------------------------------- */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.event-list .event-card {
  display: flex;
  text-align: left;
  padding: 0;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: transform 0.3s;
}
.event-list .event-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: var(--bg-card);
  box-shadow: none;
}
.event-img {
  position: relative;
  width: 40%;
}
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-date {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
}
.event-date .day {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.event-content {
  padding: 2.5rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.event-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.event-meta i {
  margin-right: 5px;
}
.event-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.event-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ------------------------------------- */
/* BOOKING PAGE STYLES */
/* ------------------------------------- */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface-light);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: #fff;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wine);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DB9347' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }
.booking-form .btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* ---------- Custom date / time picker ---------- */
.lux-picker {
  position: relative;
  width: 100%;
}

.lux-picker__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: #fff;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.lux-picker__trigger:hover,
.lux-picker.is-open .lux-picker__trigger {
  border-color: var(--gold);
}

.lux-picker__trigger:focus-visible {
  outline: none;
  border-color: var(--wine);
  box-shadow: var(--glow-gold);
}

.form-group:has([data-lux-picker].error) .lux-picker__trigger {
  border-color: #ef4444;
}

.lux-picker__value.is-placeholder {
  color: var(--text-muted);
}

.lux-picker__icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.lux-picker__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 200;
  padding: 1rem;
  background: linear-gradient(160deg, #1f1a18 0%, var(--bg-card) 55%, #151515 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: var(--shadow-luxury), var(--glow-gold);
}

.lux-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.lux-picker__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.lux-picker__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.lux-picker__nav:hover {
  background: rgba(219, 147, 71, 0.12);
  border-color: var(--gold);
}

.lux-picker__weekdays,
.lux-picker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.lux-picker__weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 0.35rem 0;
}

.lux-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.lux-picker__day.is-empty {
  pointer-events: none;
}

.lux-picker__day:not(.is-disabled):not(.is-empty):hover {
  background: rgba(219, 147, 71, 0.15);
  color: var(--gold-light);
}

.lux-picker__day.is-today {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.lux-picker__day.is-selected {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--gold-light);
  box-shadow: var(--glow-gold);
}

.lux-picker__day.is-disabled {
  color: rgba(138, 138, 138, 0.45);
  cursor: not-allowed;
}

.lux-picker__footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-gold);
}

.lux-picker__action {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  transition: color var(--transition);
}

.lux-picker__action:hover {
  color: var(--gold-light);
}

.lux-picker__action--primary {
  color: var(--gold);
  font-weight: 500;
}

.lux-picker__panel--time {
  max-height: 240px;
  overflow-y: auto;
}

.lux-picker__time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lux-picker__time-slot {
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.lux-picker__time-slot:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.lux-picker__time-slot.is-selected {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  border-color: var(--gold);
  color: var(--gold-light);
}

.form-group .lux-picker + input[type="hidden"] {
  display: none !important;
}

@media (max-width: 480px) {
  .lux-picker__panel {
    position: fixed;
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    max-width: calc(100vw - 32px);
  }

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

/* ------------------------------------- */
/* NEWS PAGE STYLES */
/* ------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}
.news-card {
  background: var(--surface-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: transform 0.3s;
  display: block;
  text-decoration: none;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.news-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-img img {
  transform: scale(1.05);
}
.news-content {
  padding: 2rem;
}
.news-meta {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.3s;
}
.news-card:hover .news-title {
  color: var(--gold);
}
.news-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.read-more i {
  transition: transform 0.3s;
}
.news-card:hover .read-more i {
  transform: translateX(5px);
}

/* ------------------------------------- */
/* ARTICLE DETAIL PAGE */
/* ------------------------------------- */
.page-hero--compact {
  min-height: 340px;
  padding-bottom: 3rem;
}

.page-hero--compact h1 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  margin-top: 1rem;
}

.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.article-hero-meta time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(219, 147, 71, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}

.article-main {
  background: var(--surface-light, rgba(27, 27, 27, 0.6));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
}

.article-featured {
  margin: 0;
}

.article-featured img,
.article-inline-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.article-featured img {
  aspect-ratio: 16 / 9;
  max-height: 480px;
}

.article-featured figcaption,
.article-inline-media figcaption {
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  border-bottom: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, 0.2);
}

.article-author-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-gold);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.article-author strong {
  display: block;
  color: var(--text-title);
  font-size: 0.95rem;
}

.article-author span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.article-share span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-share a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.article-share a:hover {
  background: rgba(219, 147, 71, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

.article-content {
  padding: 2rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
}

.article-lead {
  font-size: 1.12rem;
  color: var(--text-title);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  line-height: 1.35;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul {
  margin: 0 0 1.5rem 1.25rem;
}

.article-content li {
  margin-bottom: 0.65rem;
}

.article-content li strong {
  color: var(--gold);
}

.article-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(219, 147, 71, 0.35);
  transition: color var(--transition);
}

.article-content a:hover {
  color: var(--gold-light);
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(143, 16, 18, 0.12);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.7;
}

.article-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  color: var(--text-muted);
}

.article-inline-media {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.article-inline-media figcaption {
  border-bottom: none;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2rem 1.5rem;
}

.article-tags span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.article-tags a {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.82rem;
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.article-tags a:hover {
  background: rgba(219, 147, 71, 0.12);
  border-color: var(--gold);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border-gold);
}

.article-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.article-nav__back:hover {
  color: var(--gold-light);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.article-widget {
  background: var(--surface-light, rgba(27, 27, 27, 0.6));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.75rem;
}

.article-widget h3 {
  font-family: var(--font-display);
  color: var(--text-title);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.article-related {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-related a {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  align-items: flex-start;
  transition: opacity var(--transition);
}

.article-related a:hover {
  opacity: 0.85;
}

.article-related img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.article-related span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.article-related strong {
  display: block;
  color: var(--text-title);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
}

.article-widget--cta {
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(143, 16, 18, 0.25) 0%,
    rgba(27, 27, 27, 0.9) 100%
  );
}

.article-widget--cta .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

.article-widget--cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-widget--cta p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.article-widget--cta .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.article-widget__hotline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.article-widget__hotline:hover {
  color: var(--gold-light);
}

/* ------------------------------------- */
/* CONTACT PAGE STYLES */
/* ------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.contact-item p,
.contact-item a {
  color: var(--text-light);
  line-height: 1.6;
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--gold);
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  height: 100%;
  min-height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .event-list .event-card {
    flex-direction: column;
  }
  .event-list .event-img {
    width: 100%;
    height: 250px;
  }
  .event-list .event-content {
    width: 100%;
    padding: 1.5rem;
  }
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-container {
    min-height: 300px;
  }
}

/* ============================================================
   PHOTO WALL GALLERY — Luxury Masonry Layout
   ============================================================ */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  padding: 0.6rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: all var(--transition);
}

.filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(219, 147, 71, 0.08);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bronze));
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .photo-wall .gallery-item {
    grid-column: span 4;
  }
}
@media (max-width: 768px) {
  .photo-wall {
    gap: 12px;
  }
}

.photo-wall .gallery-item::after,
.library-featured .gallery-item::after {
  display: none;
}

.photo-wall .gallery-item {
  display: block;
  margin-bottom: 0;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  cursor: zoom-in;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-wall .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--gold) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.photo-wall .gallery-item:hover::before {
  opacity: 1;
}

.photo-wall .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), var(--glow-gold);
  border-color: transparent;
}

.photo-wall .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}

.photo-wall .gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.photo-wall .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(219, 147, 71, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.1rem;
  transform: scale(0.6) rotate(-15deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.photo-wall .gallery-item:hover .gallery-overlay i {
  transform: scale(1) rotate(0deg);
}

/* Gallery item entrance animation stagger */
.photo-wall .gallery-item {
  animation: galleryFadeIn 0.6s ease both;
}

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

@media (max-width: 768px) {
  .photo-wall .gallery-item {
    margin-bottom: 10px;
  }
  .gallery-filter {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .filter-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
  .gallery-overlay i {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ---------- GLightbox — fit viewport, large but not overflow ---------- */
.glightbox-container .gslide-media {
  max-width: min(92vw, 1400px) !important;
  max-height: 88vh !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.glightbox-container .gslide-image {
  width: 100% !important;
  max-width: min(92vw, 1400px) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.glightbox-container .gslide-image img {
  max-width: min(92vw, 1400px) !important;
  max-height: 88vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.glightbox-clean .gslide-description {
  background: rgba(17, 17, 17, 0.85);
  border-top: 1px solid var(--border-gold);
}

.glightbox-clean .gdesc-inner .gslide-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
}

/* ---------- Library gallery editorial ---------- */
.library-page .page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

.library-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.library-featured .gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  min-height: 420px;
}

.library-featured .gallery-item--tall {
  min-height: 420px;
}

.library-featured .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.88);
}

.library-featured .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.library-featured-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.library-featured-stack .gallery-item {
  min-height: 200px;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.gallery-caption .gallery-cat {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-caption h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-title);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  columns: unset;
}

.photo-wall .gallery-item {
  grid-column: span 4;
  margin-bottom: 0;
  min-height: 280px;
}

.photo-wall .gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.photo-wall .gallery-item.is-wide {
  grid-column: span 8;
}

.photo-wall .gallery-item.is-tall {
  grid-row: span 2;
  min-height: 580px;
}

.photo-wall .gallery-item.is-tall img {
  min-height: 580px;
}

.library-cta {
  margin-top: 72px;
  padding: 56px 40px;
  text-align: center;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(143, 16, 18, 0.25), rgba(17, 17, 17, 0.9)),
    var(--bg-card);
}

.library-cta .section-title {
  margin-bottom: 12px;
}

.library-cta .section-desc {
  margin: 0 auto 28px;
}

@media (max-width: 991px) {
  .library-featured {
    grid-template-columns: 1fr;
  }
  .library-featured .gallery-item,
  .library-featured-stack .gallery-item {
    min-height: 280px;
  }
  .photo-wall .gallery-item {
    grid-column: span 6;
  }
  .photo-wall .gallery-item.is-wide,
  .photo-wall .gallery-item.is-tall {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 280px;
  }
  .photo-wall .gallery-item.is-tall img {
    min-height: 280px;
  }
}

@media (max-width: 575px) {
  .photo-wall .gallery-item,
  .photo-wall .gallery-item.is-wide,
  .photo-wall .gallery-item.is-tall {
    grid-column: span 12;
  }
  .library-cta {
    padding: 40px 24px;
  }
}

