/* ============================================
   RC WARBIRD PILOTS -- CUSTOM THEME
   Dark Military Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --rcwp-dark: #0a0a0a;
  --rcwp-dark2: #111111;
  --rcwp-dark3: #1a1a1a;
  --rcwp-olive: #3d4a32;
  --rcwp-red: #c0392b;
  --rcwp-red-dark: #96281b;
  --rcwp-gold: #d4a017;
  --rcwp-gold-light: #f0c040;
  --rcwp-light: #f5f0e8;
  --rcwp-grey: #888888;
  --rcwp-white: #ffffff;
}

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

body {
  background: var(--rcwp-dark);
  color: var(--rcwp-light);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  line-height: 1.1;
  color: var(--rcwp-light);
}

a { color: var(--rcwp-red); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--rcwp-gold); }

/* === CUSTOM CURSOR === */
.rcwp-cursor {
  position: fixed;
  width: 20px; height: 20px;
  border: 2px solid var(--rcwp-red);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  z-index: 99999;
  mix-blend-mode: difference;
}
.rcwp-cursor-follower {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--rcwp-red);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: 0.1s;
}
body:hover .rcwp-cursor { opacity: 1; }

/* === ANNOUNCEMENT BAR === */
.rcwp-announcement-bar {
  background: var(--rcwp-red);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}
.rcwp-sep { opacity: 0.5; }

/* === HERO === */
.rcwp-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#rcwp-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.rcwp-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.rcwp-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
}
.rcwp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,1) 100%
  );
}
.rcwp-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
.rcwp-mission-badge {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: var(--rcwp-gold);
  letter-spacing: 6px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.rcwp-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 8px;
  line-height: 1;
  color: var(--rcwp-white);
  text-shadow: 0 0 60px rgba(192,57,43,0.5);
  margin-bottom: 20px;
  min-height: 1.1em;
}
.rcwp-hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(245,240,232,0.85);
  letter-spacing: 2px;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.rcwp-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.rcwp-hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--rcwp-grey);
}
.rcwp-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rcwp-red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* === BUTTONS === */
.rcwp-btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.rcwp-btn-red {
  background: var(--rcwp-red);
  color: white;
  border-color: var(--rcwp-red);
}
.rcwp-btn-red:hover {
  background: var(--rcwp-red-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.4);
}
.rcwp-btn-gold {
  background: var(--rcwp-gold);
  color: var(--rcwp-dark);
  border-color: var(--rcwp-gold);
  font-weight: bold;
}
.rcwp-btn-gold:hover {
  background: var(--rcwp-gold-light);
  color: var(--rcwp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}
.rcwp-btn-outline {
  background: transparent;
  color: var(--rcwp-light);
  border-color: var(--rcwp-light);
}
.rcwp-btn-outline:hover {
  background: var(--rcwp-light);
  color: var(--rcwp-dark);
}
.rcwp-btn-dark {
  background: var(--rcwp-dark);
  color: var(--rcwp-light);
  border-color: var(--rcwp-dark);
}
.rcwp-btn-dark:hover { background: var(--rcwp-dark2); }
.rcwp-btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.rcwp-btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.rcwp-btn-xl { padding: 22px 56px; font-size: 1.3rem; }

/* === STATS BAR === */
.rcwp-stats-bar {
  background: var(--rcwp-dark3);
  border-top: 3px solid var(--rcwp-red);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rcwp-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.rcwp-stat {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.rcwp-stat:last-child { border-right: none; }
.rcwp-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--rcwp-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.rcwp-stat-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--rcwp-grey);
  text-transform: uppercase;
}
.rcwp-stat-special { background: rgba(212,160,23,0.05); }
.rcwp-stat-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--rcwp-gold);
  border: 2px solid var(--rcwp-gold);
  display: inline-block;
  padding: 4px 16px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* === SECTIONS === */
.rcwp-section { padding: 100px 0; }
.rcwp-section-dark { background: var(--rcwp-dark2); }
.rcwp-section-light { background: #f0ebe0; }
.rcwp-section-red { background: var(--rcwp-red); }
.rcwp-final-cta { background: var(--rcwp-dark); border-top: 3px solid var(--rcwp-red); }
.rcwp-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.rcwp-text-center { text-align: center; }

.rcwp-section-header {
  text-align: center;
  margin-bottom: 70px;
}
.rcwp-section-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.rcwp-section-header p { max-width: 650px; margin: 0 auto; color: var(--rcwp-grey); font-size: 1.05rem; }
.rcwp-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: var(--rcwp-gold);
  margin-bottom: 16px;
}
.rcwp-red { color: var(--rcwp-red); }
.rcwp-gold { color: var(--rcwp-gold); }
.rcwp-dark-text { color: var(--rcwp-dark) !important; }
.rcwp-red-text { color: var(--rcwp-red) !important; }
.rcwp-section-cta { text-align: center; margin-top: 60px; }

/* === PLANE CARDS === */
.rcwp-plane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rcwp-plane-card {
  background: var(--rcwp-dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--rcwp-red);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.rcwp-plane-card:hover {
  box-shadow: 0 20px 60px rgba(192,57,43,0.2);
}
.rcwp-plane-card-featured {
  border-top-color: var(--rcwp-gold);
  background: linear-gradient(135deg, var(--rcwp-dark3) 0%, rgba(212,160,23,0.05) 100%);
}
.rcwp-plane-card-inner {
  padding: 36px 30px;
  position: relative;
}
.rcwp-plane-badge-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--rcwp-gold);
  color: var(--rcwp-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 4px 12px;
}
.rcwp-plane-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.8; }
.rcwp-plane-era {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--rcwp-grey);
  margin-bottom: 10px;
}
.rcwp-plane-card h3 {
  font-size: 2rem;
  margin-bottom: 6px;
  color: var(--rcwp-white);
}
.rcwp-plane-nick {
  color: var(--rcwp-gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.rcwp-plane-card p { color: var(--rcwp-grey); font-size: 0.95rem; margin-bottom: 20px; }
.rcwp-plane-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.rcwp-plane-specs span {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  color: var(--rcwp-light);
}

/* === JP HOBBY SECTION === */
.rcwp-section-gold-accent {
  background: var(--rcwp-dark);
  position: relative;
  border-top: 3px solid var(--rcwp-gold);
  border-bottom: 3px solid var(--rcwp-gold);
}
.rcwp-jphobby-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.rcwp-jphobby-badge {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--rcwp-gold);
  border: 2px solid var(--rcwp-gold);
  display: block;
  width: fit-content;
  padding: 8px 30px;
  margin: 0 auto 40px;
}
.rcwp-jphobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.rcwp-jphobby-card {
  background: var(--rcwp-dark3);
  border: 1px solid rgba(212,160,23,0.2);
  border-top: 3px solid var(--rcwp-gold);
  padding: 40px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rcwp-jphobby-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,160,23,0.15);
}
.rcwp-jphobby-icon { font-size: 3rem; margin-bottom: 20px; }
.rcwp-jphobby-card h3 {
  font-size: 1.8rem;
  color: var(--rcwp-gold);
  margin-bottom: 16px;
}
.rcwp-jphobby-card p { color: var(--rcwp-grey); margin-bottom: 20px; }
.rcwp-jphobby-features {
  list-style: none;
  margin-bottom: 30px;
}
.rcwp-jphobby-features li {
  color: var(--rcwp-light);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rcwp-jphobby-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  margin-bottom: 40px;
}
.rcwp-trust-item {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: var(--rcwp-gold);
  font-size: 0.9rem;
}

/* === FLEET IMAGE FULLWIDTH === */
.rcwp-fleet-image-section { position: relative; overflow: hidden; }
.rcwp-fleet-img-wrap { position: relative; }
.rcwp-fleet-fullimg { width: 100%; max-height: 500px; object-fit: cover; filter: brightness(0.4); display: block; }
.rcwp-fleet-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.rcwp-fleet-overlay h2 { font-size: clamp(2rem, 5vw, 4.5rem); color: white; }
.rcwp-fleet-overlay p { color: rgba(255,255,255,0.8); max-width: 600px; margin-top: 16px; }

/* === WHY GRID === */
.rcwp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}
.rcwp-why-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--rcwp-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -10px;
}
.rcwp-why-item h3 { font-size: 1.6rem; margin-bottom: 12px; }
.rcwp-why-item p { font-size: 1rem; line-height: 1.8; }

/* === BLOG GRID === */
.rcwp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rcwp-blog-card {
  background: var(--rcwp-dark3);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rcwp-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.rcwp-blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--rcwp-dark);
}
.rcwp-blog-body { padding: 28px; }
.rcwp-blog-date {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--rcwp-grey);
  margin-bottom: 10px;
}
.rcwp-blog-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.rcwp-blog-body h3 a { color: var(--rcwp-light); }
.rcwp-blog-body h3 a:hover { color: var(--rcwp-red); }
.rcwp-blog-body p { color: var(--rcwp-grey); font-size: 0.9rem; margin-bottom: 16px; }
.rcwp-read-more {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: var(--rcwp-red);
  font-size: 0.85rem;
}
.rcwp-read-more:hover { color: var(--rcwp-gold); }

/* === EMAIL FORM === */
.rcwp-email-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.rcwp-email-input {
  flex: 1;
  padding: 16px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  background: rgba(0,0,0,0.3);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  border-right: none;
}
.rcwp-email-input::placeholder { color: rgba(255,255,255,0.5); }

/* === FINAL CTA === */
.rcwp-final-cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* === KADENCE HEADER OVERRIDES === */
.site-header, .site-branding, header.site-header {
  background: rgba(10,10,10,0.95) !important;
  border-bottom: 2px solid var(--rcwp-red) !important;
  backdrop-filter: blur(10px);
}
.main-navigation a, .nav-link, header a {
  color: var(--rcwp-light) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 2px !important;
  font-size: 1rem !important;
}
.main-navigation a:hover { color: var(--rcwp-red) !important; }
.site-footer, footer {
  background: var(--rcwp-dark) !important;
  border-top: 2px solid var(--rcwp-red) !important;
  color: var(--rcwp-grey) !important;
}

/* === GSAP ANIMATION SETUP === */
.rcwp-animate {
  opacity: 0;
  transform: translateY(40px);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .rcwp-plane-grid, .rcwp-jphobby-grid, .rcwp-blog-grid { grid-template-columns: 1fr; }
  .rcwp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .rcwp-why-grid { grid-template-columns: 1fr; }
  .rcwp-announcement-bar { font-size: 0.7rem; gap: 10px; }
  body { cursor: auto; }
  .rcwp-cursor, .rcwp-cursor-follower { display: none; }
}

/* === LOGO === */
.rcwp-site-logo { max-height: 60px; width: auto; filter: brightness(0) invert(1); }
.rcwp-logo-link { display: inline-block; }
.site-branding .site-title { display: none; }

/* === PAGE HERO === */
.rcwp-page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.rcwp-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.85));
}
.rcwp-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.rcwp-page-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  margin: 10px 0;
}
.rcwp-page-hero-line {
  width: 80px;
  height: 3px;
  background: var(--rcwp-red);
  margin: 20px auto 0;
}

/* === PAGE BODY === */
.rcwp-page-body {
  background: var(--rcwp-dark2);
  min-height: 400px;
}
.rcwp-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.rcwp-page-content h2 {
  font-size: 2.5rem;
  color: var(--rcwp-light);
  margin: 50px 0 20px;
  border-left: 4px solid var(--rcwp-red);
  padding-left: 20px;
}
.rcwp-page-content h3 {
  font-size: 1.8rem;
  color: var(--rcwp-gold);
  margin: 30px 0 15px;
}
.rcwp-page-content p {
  color: #aaa;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.rcwp-page-content ul {
  color: #aaa;
  padding-left: 24px;
  margin-bottom: 20px;
}
.rcwp-page-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.rcwp-page-content a { color: var(--rcwp-red); }
.rcwp-page-content a:hover { color: var(--rcwp-gold); }
.rcwp-page-content .wp-block-button .wp-element-button,
.rcwp-page-content .wp-block-button__link {
  background: var(--rcwp-red) !important;
  color: white !important;
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 2px !important;
  border: none !important;
  padding: 14px 30px !important;
}

/* === BLOG POST === */
.rcwp-post-meta {
  color: rgba(255,255,255,0.6);
  font-family: "Roboto Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-top: 10px;
}
.rcwp-single-content { max-width: 800px; }
.rcwp-post-nav { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }

/* === NAV SHOP/JP HOBBY === */
.rcwp-nav-shop > a, .menu-item a[href*="rcwarbirdmodels"] {
  color: var(--rcwp-red) !important;
  font-weight: bold !important;
}
.rcwp-nav-jphobby > a {
  color: var(--rcwp-gold) !important;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
  .rcwp-page-content [style*='grid-template-columns'] { display: block !important; }
  .rcwp-page-content [style*='display:grid'] { display: block !important; }
  .rcwp-page-content [style*='display:grid'] > div,
  .rcwp-page-content [style*='display: grid'] > div { margin-bottom: 20px !important; width: 100% !important; }
  .rcwp-plane-grid, .rcwp-jphobby-grid, .rcwp-blog-grid, .rcwp-why-grid { grid-template-columns: 1fr !important; }
  .rcwp-stats-inner { grid-template-columns: 1fr 1fr !important; }
  .rcwp-hero-title { font-size: 3rem !important; }
  .rcwp-hero-cta, .rcwp-final-cta-btns { flex-direction: column !important; align-items: center !important; }
  .rcwp-announcement-bar { font-size: 0.65rem !important; gap: 6px !important; }
  .rcwp-page-title { font-size: 2.2rem !important; }
  .rcwp-container { padding: 0 16px !important; }
  .rcwp-section { padding: 50px 0 !important; }
  .rcwp-email-form { flex-direction: column !important; }
  .rcwp-email-input { border-right: 2px solid rgba(255,255,255,0.3) !important; width: 100% !important; }
  .rcwp-jphobby-trust { gap: 15px !important; }
  .rcwp-plane-card-inner { padding: 24px 20px !important; }
  body { cursor: auto !important; }
  .rcwp-cursor, .rcwp-cursor-follower { display: none !important; }
}
@media (max-width: 480px) {
  .rcwp-hero-title { font-size: 2.2rem !important; }
  .rcwp-stats-inner { grid-template-columns: 1fr !important; }
  .rcwp-btn-xl { padding: 14px 24px !important; font-size: 1rem !important; }
  .rcwp-section-header h2 { font-size: 2rem !important; }
}

/* ============================================
   MOBILE FONT SIZE & CONTENT FIXES
   ============================================ */
@media (max-width: 768px) {
  .entry-content p, .rcwp-page-content p { font-size: 1rem !important; line-height: 1.7 !important; }
  .entry-content h2 { font-size: 1.8rem !important; }
  .entry-content h3 { font-size: 1.3rem !important; }
  .entry-content img { width: 100% !important; height: auto !important; margin-bottom: 20px !important; }
  .entry-content [style*='padding:40px'] { padding: 24px 16px !important; }
  .entry-content [style*='padding: 40px'] { padding: 24px 16px !important; }
  .entry-content [style*='font-size:3rem'] { font-size: 2rem !important; }
  .entry-content [style*='font-size: 3rem'] { font-size: 2rem !important; }
  .entry-content [style*='font-size:4rem'] { font-size: 2.5rem !important; }
  .entry-content [style*='gap:40px'] { gap: 20px !important; }
}

/* ============================================
   HAMBURGER MENU & MOBILE NAV VISIBILITY
   ============================================ */
@media (max-width: 1024px) {
  /* Ensure Kadence mobile toggle is visible */
  .menu-toggle-open { display: flex !important; color: #f5f0e8 !important; }
  #mobile-header { display: block !important; }
  #main-header { display: none !important; }
  /* Mobile drawer nav styling */
  .popup-drawer .drawer-inner { background: #0d0d0d !important; }
  .popup-drawer .mobile-navigation a { color: #f5f0e8 !important; font-family: 'Bebas Neue', Impact, sans-serif; letter-spacing: 2px; font-size: 1.1rem; }
  .popup-drawer .mobile-navigation a:hover { color: #c0392b !important; }
}

/* ============================================
   FOOTER MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  footer [style*='grid-template-columns'] { display: block !important; }
  footer [style*='display:grid'] { display: block !important; }
  footer [style*='display: grid'] { display: block !important; }
  footer [style*='gap:40px'] { gap: 20px !important; }
  footer > div > div > div { margin-bottom: 30px !important; }
  footer [style*='justify-content:space-between'] { flex-direction: column !important; gap: 12px !important; }
}
