/*
Theme Name:  Lebay Hotel
Theme URI:   https://www.lebayhotel.com.cy
Author:      Lebay Beach Hotel
Author URI:  https://www.lebayhotel.com.cy
Description: Luxury beachfront hotel theme for Lebay Beach Hotel, Larnaca, Cyprus. Built with Visual Composer (WPBakery) compatibility. Clean, modern design with Mediterranean aesthetic.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lebay-hotel
Tags:        hotel, tourism, full-width-template, custom-menu, featured-images, custom-logo, wpbakery, visual-composer
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --lebay-navy:      #1a3a4a;
  --lebay-navy-dark: #0f2635;
  --lebay-navy-mid:  #234e66;
  --lebay-gold:      #c9a96e;
  --lebay-gold-light:#e8d5b0;
  --lebay-gold-dark: #a07840;
  --lebay-cream:     #f8f4ee;
  --lebay-sand:      #ede8df;
  --lebay-white:     #ffffff;
  --lebay-black:     #111111;
  --lebay-gray:      #6b7280;
  --lebay-gray-light:#e5e7eb;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Jost', sans-serif;

  /* Spacing */
  --section-pad:  80px;
  --section-pad-sm: 48px;
  --container:    1200px;
  --gap:          24px;

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --duration:     0.4s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26,58,74,0.08);
  --shadow-md:  0 8px 32px rgba(26,58,74,0.12);
  --shadow-lg:  0 24px 64px rgba(26,58,74,0.18);

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lebay-black);
  background: var(--lebay-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lebay-gold-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
a:hover { color: var(--lebay-navy); }

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--lebay-navy);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lebay-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--lebay-gray);
  max-width: 680px;
}

/* Decorative divider */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--lebay-gold), var(--lebay-gold-light));
  margin: 1.5rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

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

.container--wide { max-width: 1440px; }
.container--narrow { max-width: 800px; }

.section {
  padding: var(--section-pad) 0;
}
.section--sm { padding: var(--section-pad-sm) 0; }
.section--lg { padding: calc(var(--section-pad) * 1.5) 0; }

.section--cream  { background: var(--lebay-cream); }
.section--navy   { background: var(--lebay-navy); color: var(--lebay-white); }
.section--dark   { background: var(--lebay-navy-dark); color: var(--lebay-white); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: 1rem; }
.section-title .lead { margin: 0 auto; }

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

.flex { display: flex; gap: var(--gap); }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--wrap { flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--lebay-gold);
  color: var(--lebay-navy-dark);
}
.btn--primary:hover {
  background: var(--lebay-gold-dark);
  color: var(--lebay-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--lebay-white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--lebay-white);
  color: var(--lebay-navy);
  border-color: var(--lebay-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--lebay-navy);
  border: 1px solid var(--lebay-navy);
}
.btn--outline-dark:hover {
  background: var(--lebay-navy);
  color: var(--lebay-white);
}

.btn--gold-outline {
  background: transparent;
  color: var(--lebay-gold);
  border: 1px solid var(--lebay-gold);
}
.btn--gold-outline:hover {
  background: var(--lebay-gold);
  color: var(--lebay-navy-dark);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              padding var(--duration) var(--ease-out);
  padding: 24px 0;
}

#site-header.is-transparent {
  background: linear-gradient(180deg, rgba(15,38,53,0.7) 0%, transparent 100%);
}

#site-header.is-scrolled {
  background: var(--lebay-navy-dark);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}
.site-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--duration) var(--ease-out);
}
#site-header.is-scrolled .site-logo img { height: 44px; }

/* Primary Nav */
.primary-nav ul {
  display: flex;
  gap: 4px;
}
.primary-nav a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all var(--duration);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--lebay-white);
  border-bottom-color: var(--lebay-gold);
}

/* Book Now CTA in header */
.header-book-btn {
  flex-shrink: 0;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--lebay-white);
  font-size: 1.25rem;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.is-active .hero-slide__bg { transform: scale(1); }

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,38,53,0.65) 0%,
    rgba(15,38,53,0.3) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-slide__content {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  padding: 0 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--lebay-white);
}

.hero-slide__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lebay-gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out) 0.2s;
}

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--lebay-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out) 0.4s;
}

.hero-slide__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out) 0.6s;
}

.hero-slide.is-active .hero-slide__eyebrow,
.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Slider controls */
.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-nav__dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-nav__dot.is-active {
  background: var(--lebay-gold);
  width: 48px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--lebay-white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.25rem;
}
.hero-arrow:hover { background: var(--lebay-gold); border-color: var(--lebay-gold); }
.hero-arrow--prev { left: 32px; }
.hero-arrow--next { right: 32px; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.page-header__content {
  position: relative;
  z-index: 1;
  padding: 48px;
  color: var(--lebay-white);
}
.page-header h1 {
  color: var(--lebay-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

/* ============================================================
   ROOMS / CARDS
   ============================================================ */
.room-card {
  background: var(--lebay-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration), transform var(--duration);
}
.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.room-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.room-card:hover .room-card__image img { transform: scale(1.05); }

.room-card__badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.room-badge {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(15,38,53,0.85);
  color: var(--lebay-gold-light);
  backdrop-filter: blur(8px);
}

.room-card__body { padding: 28px; }
.room-card__title {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.room-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lebay-gray-light);
}
.room-meta-item {
  font-size: 0.8125rem;
  color: var(--lebay-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-meta-item svg { flex-shrink: 0; }

.room-card__desc {
  font-size: 0.9375rem;
  color: var(--lebay-gray);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.amenity-tag {
  font-size: 0.75rem;
  background: var(--lebay-sand);
  color: var(--lebay-navy);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gallery-filter__btn {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--lebay-gray-light);
  color: var(--lebay-gray);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter__btn:hover,
.gallery-filter__btn.is-active {
  background: var(--lebay-navy);
  border-color: var(--lebay-navy);
  color: var(--lebay-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,38,53,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Gallery spanning items */
.gallery-item--wide  { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall  { grid-row: span 2; aspect-ratio: 1/2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox img { max-height: 85vh; max-width: 90vw; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   NEWS / BLOG POSTS
   ============================================================ */
.post-card {
  background: var(--lebay-white);
  overflow: hidden;
  transition: box-shadow var(--duration);
}
.post-card:hover { box-shadow: var(--shadow-md); }

.post-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.post-card:hover .post-card__image img { transform: scale(1.04); }

.post-card__body { padding: 24px; }
.post-card__date {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--lebay-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.post-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.post-card:hover .post-card__title { color: var(--lebay-gold-dark); }
.post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--lebay-gray);
  margin-bottom: 1.25rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-info { padding: 48px; }
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lebay-gold);
  font-size: 1.125rem;
}

/* Contact Form */
.contact-form { background: var(--lebay-white); padding: 48px; }
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lebay-navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--lebay-gray-light);
  background: var(--lebay-cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--lebay-black);
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--lebay-gold);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--lebay-navy-dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .site-logo img { filter: brightness(0) invert(1); height: 48px; }
.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--lebay-gold);
  color: var(--lebay-gold);
  background: rgba(201,169,110,0.1);
}

.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lebay-white);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--lebay-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FLOATING BOOK BUTTON
   ============================================================ */
.floating-book {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s var(--ease-out);
}
.floating-book.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   VISUAL COMPOSER / WPBAKERY OVERRIDES
   ============================================================ */

/* VC Row */
.vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* VC Column */
.wpb_column { }

/* VC Text Block */
.wpb_text_column { }

/* VC Single Image */
.wpb_single_image .wpb_wrapper { text-align: inherit; }

/* Remove VC default padding */
.vc_column_container > .vc_column-inner {
  padding: 0;
}

/* VC Section with custom background */
.vc_section { position: relative; }

/* VC Custom Heading */
.vc_custom_heading {
  font-family: var(--font-display);
}

/* VC Separator */
.vc_separator .vc_sep_holder .vc_sep_line {
  border-color: var(--lebay-gold) !important;
}

/* VC Button */
.vc_btn3 {
  font-family: var(--font-accent) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}
.vc_btn3-color-juicy_pink,
.vc_btn3.vc_btn3-color-primary {
  background: var(--lebay-gold) !important;
  color: var(--lebay-navy-dark) !important;
  border-color: var(--lebay-gold) !important;
}
.vc_btn3-color-juicy_pink:hover,
.vc_btn3.vc_btn3-color-primary:hover {
  background: var(--lebay-gold-dark) !important;
  border-color: var(--lebay-gold-dark) !important;
  color: var(--lebay-white) !important;
}

/* VC Grid */
.vc_grid.vc_row { margin: 0 !important; }

/* VC Tabs */
.vc_tta-tabs .vc_tta-tab > a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vc_tta-tabs.vc_tta-style-modern .vc_tta-tab.vc_active > a {
  color: var(--lebay-gold) !important;
  background: transparent !important;
  border-bottom-color: var(--lebay-gold) !important;
}

/* VC Accordion */
.vc_tta-accordion .vc_tta-panel-heading {
  background: var(--lebay-cream) !important;
  border: 1px solid var(--lebay-gray-light) !important;
}
.vc_tta-accordion .vc_tta-panel-heading:hover,
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background: var(--lebay-navy) !important;
}
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon::before,
.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon::after {
  border-color: var(--lebay-gold) !important;
}

/* VC Pie Chart */
.vc_pie_chart .vc_pie_chart_back { fill: var(--lebay-sand) !important; }

/* VC Progress Bar */
.vc_progress_bar .vc_single_bar .vc_bar { background: var(--lebay-gold) !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-fadeInUp { animation: fadeInUp 0.7s var(--ease-out) both; }
.animate-fadeIn   { animation: fadeIn 0.6s ease both; }
.animate-scaleIn  { animation: scaleIn 0.5s var(--ease-out) both; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }

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

  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--lebay-navy-dark);
    padding: 100px 32px 32px;
    overflow-y: auto;
    z-index: 999;
  }
  .primary-nav.is-open ul { flex-direction: column; gap: 0; }
  .primary-nav.is-open a {
    display: block;
    font-size: 1.25rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.1em;
  }

  .nav-toggle { display: flex; }

  .hero-slide__content { padding: 0 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide  { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item--tall  { grid-row: span 1; aspect-ratio: 1; }

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

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

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header, .floating-book, .hero-nav, .hero-arrow { display: none; }
  body { font-size: 12pt; }
  .container { max-width: 100%; }
}
