/*
Theme Name: Cunard Queen Elizabeth
Theme URI: https://cunardqueenelizabeth.biz
Author: CunardQueenElizabeth.biz
Author URI: https://cunardqueenelizabeth.biz
Description: An elegant Art Deco maritime luxury WordPress theme for Cunard Queen Elizabeth world cruises. Deep crimson red backgrounds, gold accents, Playfair Display typography. Fully responsive with rich SEO content for Cunard Line and the Queen Elizabeth cruise ship.
Version: 2.1
Requires at least: 6.0
Tested up to: 6.7
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: cunard-queen-elizabeth
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, responsive-layout, theme-options
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&family=Cinzel:wght@400;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --crimson-darkest:  #1a0000;
  --crimson-darker:   #2d0000;
  --crimson-dark:     #3d0000;
  --crimson-mid:      #5c0a00;
  --crimson-accent:   #8b1a1a;
  --gold-main:        #C9A84C;
  --gold-light:       #E8C97A;
  --gold-pale:        #F5E6B8;
  --gold-dark:        #8B6914;
  --ivory:            #EDE0CC;
  --ivory-light:      #FAF6EE;
  --text-light:       #c8b89a;
  --white:            #ffffff;
  --green-wa:         #25D366;
  --font-display:     'Cinzel', serif;
  --font-heading:     'Playfair Display', serif;
  --font-body:        'Lato', sans-serif;
  --transition:       0.25s cubic-bezier(0.23, 1, 0.32, 1);
  --radius:           0.2rem;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--crimson-darkest);
  color: var(--ivory);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-main); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--gold-light); line-height: 1.3; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--crimson-accent);
  color: var(--ivory-light);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn-primary:hover {
  background: #a52020;
  color: var(--gold-pale);
  border-color: var(--gold-main);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-main));
  color: var(--crimson-darkest);
  font-weight: 700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  color: var(--crimson-darkest);
}
.btn-wa {
  background: var(--green-wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: none;
}
.btn-wa:hover { background: #1da851; color: #fff; }

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--gold-main);
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}
.gold-divider span { font-size: 1rem; }

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
  background: var(--crimson-darkest);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 0;
  font-size: 0.78rem;
}
.announcement-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.announcement-bar .left {
  font-family: var(--font-display);
  color: var(--gold-main);
  letter-spacing: 0.1em;
}
.announcement-bar .right a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-weight: 700;
}
.announcement-bar .right a:hover { color: var(--green-wa); }
.wa-dot {
  width: 10px; height: 10px;
  background: var(--green-wa);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  background: linear-gradient(180deg, rgba(26,0,0,0.98) 0%, rgba(45,0,0,0.96) 100%);
  border-bottom: 2px solid rgba(201,168,76,0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-branding .site-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
}
.site-branding .site-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-main);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--gold-light);
  border-bottom-color: var(--gold-main);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius);
}

/* ── Promo Banner ─────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(90deg, #1a0000 0%, #3d0000 30%, #5c0a00 50%, #3d0000 70%, #1a0000 100%);
  border-top: 2px solid var(--gold-main);
  border-bottom: 2px solid var(--gold-main);
  overflow: hidden;
  position: relative;
  animation: bannerPulse 4s ease-in-out infinite;
}
.promo-banner .shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.07) 50%, transparent 100%);
  background-size: 800px 100%;
  animation: shimmer 3s linear infinite;
}
.promo-badge {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  display: flex; align-items: center;
  padding: 0 1.2rem;
  font-family: var(--font-display); font-size: 0.68rem;
  color: var(--crimson-darkest); letter-spacing: 0.1em;
  font-weight: 700; white-space: nowrap;
}
.promo-ticker {
  padding-left: 140px; padding-right: 150px;
  height: 44px; display: flex; align-items: center;
  overflow: hidden; cursor: pointer;
}
.promo-ticker .ticker-inner {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display); font-size: 0.76rem;
  color: var(--gold-light); letter-spacing: 0.1em;
  animation: marquee 32s linear infinite;
}
.promo-ticker:hover .ticker-inner { animation-play-state: paused; }
.promo-cta {
  position: absolute; right: 0; top: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center;
}
.promo-cta a {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--green-wa); color: #fff;
  padding: 0 1.2rem; height: 100%;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: background var(--transition);
}
.promo-cta a:hover { background: #1da851; color: #fff; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  background-size: cover;
  background-position: center;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-main);
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.hero-funnel {
  display: inline-block;
  width: 52px; height: 70px;
  background: linear-gradient(180deg, #c0392b 60%, #2d2d2d 60%);
  border-radius: 4px 4px 0 0;
  position: relative;
  margin: 0 auto 1.5rem;
}
.hero-funnel::before,
.hero-funnel::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  height: 10%;
  background: #1a1a1a;
  border-radius: 2px;
}
.hero-funnel::before { top: 18%; }
.hero-funnel::after  { top: 38%; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.68rem;
  letter-spacing: 0.18em; color: var(--gold-main);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.3rem 1rem; margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold-pale);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-text {
  color: var(--ivory);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: #2d0000;
  border-bottom: 2px solid rgba(201,168,76,0.4);
  padding: 1rem 0;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0.5rem;
}
.stat-item { text-align: center; padding: 0.5rem 1rem; }
.stat-number {
  display: block;
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--gold-light); font-weight: 700;
}
.stat-label {
  display: block;
  font-family: var(--font-body); font-size: 0.68rem;
  color: var(--gold-main); letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-dark { background: linear-gradient(180deg, #3d0000 0%, #2d0000 100%); }
.section-darker { background: var(--crimson-darker); }
.section-darkest { background: var(--crimson-darkest); }
.section-border-bottom { border-bottom: 1px solid rgba(201,168,76,0.25); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-heading);
}

/* ── Image Banner ─────────────────────────────────────────── */
.image-banner {
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.image-banner img { width: 100%; object-fit: cover; max-height: 420px; }

/* ── Fleet Cards ──────────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.fleet-card {
  background: linear-gradient(180deg, rgba(61,0,0,0.9) 0%, rgba(26,0,0,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.fleet-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.fleet-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.fleet-card:hover::before { opacity: 1; }
.fleet-card-name {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--gold-light); letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.fleet-card-year { font-size: 0.75rem; color: var(--gold-main); margin-bottom: 0.75rem; }
.fleet-card-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.fleet-card-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fleet-card-links a {
  font-size: 0.72rem; font-family: var(--font-display);
  letter-spacing: 0.08em; color: var(--gold-main);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.25rem 0.6rem; border-radius: var(--radius);
  transition: all var(--transition);
}
.fleet-card-links a:hover { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: var(--gold-main); }

/* ── Post Grid ────────────────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: rgba(61,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.post-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.post-card-thumb img { width: 100%; height: 180px; object-fit: cover; }
.post-card-body { padding: 1.25rem; }
.post-card-cat {
  font-family: var(--font-display); font-size: 0.65rem;
  letter-spacing: 0.15em; color: var(--gold-main);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.post-card-title { font-size: 1rem; color: var(--gold-light); margin-bottom: 0.5rem; line-height: 1.4; }
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--gold-main); }
.post-card-excerpt { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── Specs Table ──────────────────────────────────────────── */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 0.88rem;
}
.specs-table th {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-align: left;
}
.specs-table td { color: var(--ivory); }
.specs-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

/* ── Why Book ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(61,0,0,0.4);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover { border-color: rgba(201,168,76,0.45); background: rgba(61,0,0,0.65); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-title { font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-light); letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.why-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── SEO Content ──────────────────────────────────────────── */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.seo-block h3 {
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--gold-light); letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.seo-block p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--crimson-darkest);
  border-top: 2px solid rgba(201,168,76,0.4);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-display); color: var(--gold-light);
  font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.4rem;
}
.footer-brand-tag {
  font-family: var(--font-body); font-size: 0.7rem;
  color: var(--gold-main); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.footer-brand-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0.75rem; }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.75rem;
  color: var(--gold-main); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-light); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(200,184,154,0.6);
}

/* ── Floating WhatsApp ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--green-wa); color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waBounce 3s ease-in-out infinite, waGlow 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  animation: none;
  transform: scale(1.08);
  box-shadow: 0 6px 36px rgba(37,211,102,0.85);
  color: #fff;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--crimson-darkest); color: var(--gold-light);
  padding: 0.3rem 0.7rem; border-radius: var(--radius);
  font-size: 0.75rem; font-family: var(--font-body); font-weight: 700;
  white-space: nowrap; border: 1px solid var(--gold-main);
  pointer-events: none; opacity: 0; transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── Single Post ──────────────────────────────────────────── */
.single-content { max-width: 800px; margin: 0 auto; }
.single-content h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.single-content .post-meta { font-size: 0.8rem; color: var(--gold-main); margin-bottom: 1.5rem; }
.single-content .post-body p { margin-bottom: 1.25rem; color: var(--ivory); line-height: 1.8; }
.single-content .post-body h2 { font-size: 1.4rem; color: var(--gold-light); margin: 2rem 0 0.75rem; }
.single-content .post-body h3 { font-size: 1.1rem; color: var(--gold-main); margin: 1.5rem 0 0.5rem; }
.single-content .post-body ul { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--ivory); }
.single-content .post-body ul li { margin-bottom: 0.4rem; }
.post-thumbnail { border: 2px solid rgba(201,168,76,0.3); border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.post-thumbnail img { width: 100%; max-height: 450px; object-fit: cover; }

/* ── Sidebar ──────────────────────────────────────────────── */
.content-sidebar-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.sidebar .widget { margin-bottom: 2rem; }
.sidebar .widget-title {
  font-family: var(--font-display); font-size: 0.8rem;
  color: var(--gold-main); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 0.75rem;
  padding-bottom: 0.4rem; border-bottom: 1px solid rgba(201,168,76,0.25);
}
.sidebar ul { list-style: none; }
.sidebar ul li { margin-bottom: 0.4rem; }
.sidebar ul li a { font-size: 0.85rem; color: var(--text-light); }
.sidebar ul li a:hover { color: var(--gold-light); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  font-size: 0.82rem; color: var(--text-light);
  transition: all var(--transition);
}
.pagination a:hover, .pagination .current {
  background: rgba(201,168,76,0.15); color: var(--gold-light);
  border-color: var(--gold-main);
}

/* ── 404 ──────────────────────────────────────────────────── */
.error-404 { text-align: center; padding: 6rem 0; }
.error-404 h1 { font-size: 5rem; color: var(--gold-main); margin-bottom: 0.5rem; }
.error-404 h2 { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 1rem; }
.error-404 p { color: var(--text-light); margin-bottom: 2rem; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%       { box-shadow: 0 0 18px 4px rgba(201,168,76,0.25); }
}
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}
@keyframes waBounce {
  0%, 100% { transform: scale(1) translateY(0); }
  30%       { transform: scale(1.12) translateY(-4px); }
  60%       { transform: scale(0.97) translateY(2px); }
}
@keyframes waGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s cubic-bezier(0.23,1,0.32,1) both; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .main-nav ul li a { display: block; padding: 0.6rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .promo-badge { display: none; }
  .promo-ticker { padding-left: 0.5rem; padding-right: 130px; }
  .announcement-bar .left { display: none; }
  .hero-section { padding: 4rem 0 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-ticker .ticker-inner { animation: none; }
  .wa-float { animation: none; }
  .fade-in-up { animation: none; }
}
