/* ============================================
   LUNDEEN'S OF SYCAMORE — CHILD THEME CSS
   File: style.css (in oceanwp-child/)
   ============================================ */

/*
 Theme Name:   OceanWP Child - Lundeen's
 Template:     oceanwp
 Description:  Custom child theme for Lundeen's of Sycamore
 Version:      1.0
*/

/* ----------------------------------------
   IMPORTS & VARIABLES
   ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Oxygen:wght@300;400;700&display=swap');

/*
 * 
 * 
 * make an account section
 * 
 * 
 * 
 * */
/* ============================================
   ACCOUNT REQUIRED BANNER (Homepage)
   ============================================ */
.lun-account-banner {
  padding: 30px 0;
  background: var(--lun-cream);
  border-top: 2px solid var(--lun-green);
  border-bottom: 2px solid var(--lun-green);
}

.lun-account-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--lun-white);
  border: 1px solid var(--lun-gray-100);
  border-radius: 12px;
  padding: 28px 28px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.lun-account-banner-title {
  font-family: var(--lun-font-accent);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--lun-charcoal);
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.lun-account-banner-subtitle {
  margin: 0;
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.6;
  max-width: 560px;
}

.lun-account-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .lun-account-banner-inner {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .lun-account-banner-actions {
    justify-content: flex-start;
  }

  .lun-account-banner-actions .lun-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

:root {
  /* Primary Palette — Matched to Lundeen's logo */
  --lun-red: #8B2320;
  --lun-red-light: #A52E2A;
  --lun-red-dark: #6E1B18;
  --lun-green: #1B6B5A;
  --lun-green-light: #238D76;
  --lun-green-dark: #14503F;

  /* Neutrals */
  --lun-cream: #FAF6F0;
  --lun-cream-dark: #F0EAE0;
  --lun-charcoal: #1A1A1A;
  --lun-dark: #111111;
  --lun-gray-700: #333333;
  --lun-gray-500: #666666;
  --lun-gray-300: #AAAAAA;
  --lun-gray-100: #EEEEEE;
  --lun-white: #FFFFFF;

  /* Accent — warm gold */
  --lun-gold: #C9A84C;
  --lun-gold-light: #DBBF6A;

  /* Fonts */
  --lun-font-accent: 'Lora', Georgia, serif;
  --lun-font-base: 'Oxygen', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --lun-section-padding: 100px 0;
  --lun-container-width: 1200px;
  --lun-gap: 24px;

  /* Transitions */
  --lun-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --lun-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------
   OCEANWP FULL-WIDTH OVERRIDES
   ---------------------------------------- */


body {
  font-family: var(--lun-font-base);
  color: var(--lun-gray-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------
   CONTAINER
   ---------------------------------------- */
.lun-container {
  max-width: var(--lun-container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ----------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------- */
.lun-label {
  display: inline-block;
  font-family: var(--lun-font-base);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lun-gold);
  margin-bottom: 12px;
}

.lun-section-title {
  font-family: var(--lun-font-accent);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--lun-charcoal);
  margin: 0 0 20px 0;
}

.lun-accent {
  color: var(--lun-red);
  font-style: italic;
}

.lun-section-subtitle {
  font-size: 18px;
  color: var(--lun-gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.lun-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.lun-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--lun-gray-700);
  margin-bottom: 16px;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.lun-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--lun-font-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.35s var(--lun-ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.lun-btn-primary {
  background: var(--lun-red);
  color: var(--lun-white);
  border: 2px solid var(--lun-red);
}

.lun-btn-primary:hover {
  background: var(--lun-red-dark);
  border-color: var(--lun-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 35, 32, 0.3);
  color: var(--lun-white);
  text-decoration: none;
}

.lun-btn-outline {
  background: transparent;
  color: var(--lun-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.lun-btn-outline:hover {
  background: var(--lun-white);
  color: var(--lun-charcoal);
  border-color: var(--lun-white);
  transform: translateY(-2px);
  text-decoration: none;
}

.lun-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----------------------------------------
   SECTIONS — GENERAL
   ---------------------------------------- */
.lun-section {
  padding: var(--lun-section-padding);
  position: relative;
  overflow: hidden;
}

/* ----------------------------------------
   HERO
   ---------------------------------------- */
.lun-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://lundeenssycamore.com/wp-content/uploads/2026/02/header-bg.jpg-scaled.jpg') center center / cover no-repeat;
  background-color: var(--lun-dark);
  overflow: hidden;
}

.lun-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(139, 35, 32, 0.55) 50%,
    rgba(27, 107, 90, 0.45) 100%
  );
  z-index: 1;
}

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

.lun-hero-title {
  font-family: var(--lun-font-accent);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--lun-white);
  margin: 0 0 12px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.lun-hero-logo {
  margin-bottom: 28px;
  opacity: 0;
  animation: lunFadeUp 0.8s var(--lun-ease) 0.2s forwards;
}

.lun-hero-logo img {
  width: clamp(200px, 30vw, 340px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}

.lun-hero-tagline {
  font-family: var(--lun-font-base);
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 36px 0;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: lunFadeUp 0.8s var(--lun-ease) 0.6s forwards;
}

.lun-hero .lun-hero-buttons {
  justify-content: center;
  opacity: 0;
  animation: lunFadeUp 0.8s var(--lun-ease) 0.8s forwards;
}

.lun-hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: lunFadeUp 0.8s var(--lun-ease) 1.2s forwards;
}

.lun-hero-scroll-indicator span {
  font-family: var(--lun-font-base);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.lun-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: lunScrollPulse 2s ease-in-out infinite;
}

/* ----------------------------------------
   CATEGORY TILES — Horizontal Row with Images
   ---------------------------------------- */
.lun-categories {
  background: var(--lun-white);
  padding: 50px 0;
}

.lun-categories .lun-section-header {
  display: none;
}

.lun-tiles-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.lun-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-width: 170px;
  flex: 1;
  height: 200px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s var(--lun-ease), box-shadow 0.4s var(--lun-ease);
}

.lun-tile-wide {
  flex: 1;
  min-width: 170px;
}

.lun-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--lun-gray-700);
  transition: transform 0.6s var(--lun-ease);
}

.lun-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(17, 17, 17, 0.2) 60%,
    transparent 100%
  );
  transition: background 0.4s var(--lun-ease);
}

.lun-tile-content {
  position: relative;
  z-index: 2;
  padding: 16px;
  width: 100%;
  text-align: center;
}

.lun-tile-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
  filter: none;
}

.lun-tile-content h3 {
  font-family: var(--lun-font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--lun-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lun-tile-content p {
  display: none;
}

.lun-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.lun-tile:hover .lun-tile-bg {
  transform: scale(1.08);
}

.lun-tile:hover .lun-tile-overlay {
  background: linear-gradient(
    to top,
    rgba(139, 35, 32, 0.85) 0%,
    rgba(139, 35, 32, 0.2) 60%,
    transparent 100%
  );
}

/* ----------------------------------------
   ABOUT STRIP
   ---------------------------------------- */
.lun-about-strip {
  background: var(--lun-white);
}

.lun-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lun-about-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.lun-about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.lun-about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--lun-red);
  color: var(--lun-white);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 35, 32, 0.4);
}

.lun-badge-number {
  display: block;
  font-family: var(--lun-font-accent);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.lun-badge-text {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
}

.lun-about-text .lun-section-title {
  text-align: left;
}

.lun-about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--lun-gray-100);
  border-bottom: 1px solid var(--lun-gray-100);
}

.lun-stat {
  text-align: center;
}

.lun-stat-number {
  font-family: var(--lun-font-accent);
  font-size: 36px;
  font-weight: 700;
  color: var(--lun-green);
  line-height: 1;
}

.lun-stat-plus {
  font-family: var(--lun-font-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--lun-green);
}

.lun-stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lun-gray-500);
  margin-top: 4px;
}

/* ----------------------------------------
   WHY LUNDEEN'S (FEATURES)
   ---------------------------------------- */
.lun-why {
  background: var(--lun-cream);
}

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

.lun-feature-card {
  background: var(--lun-white);
  padding: 40px 28px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.35s var(--lun-ease), box-shadow 0.35s var(--lun-ease);
  border: 1px solid var(--lun-gray-100);
}

.lun-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.lun-feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lun-red), var(--lun-red-light));
  border-radius: 50%;
  color: var(--lun-white);
}

.lun-feature-card h3 {
  font-family: var(--lun-font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 12px 0;
}

.lun-feature-card p {
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------
   LOCATION & HOURS
   ---------------------------------------- */
.lun-location {
  background: var(--lun-white);
}

.lun-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lun-location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.lun-location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lun-location-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lun-cream);
  border-radius: 12px;
  color: var(--lun-green);
}

.lun-location-item strong {
  display: block;
  font-family: var(--lun-font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin-bottom: 2px;
}

.lun-location-item p {
  margin: 0;
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.5;
}

.lun-location-item a {
  color: var(--lun-red);
  text-decoration: none;
  transition: color 0.3s var(--lun-ease);
}

.lun-location-item a:hover {
  color: var(--lun-red-dark);
}

.lun-location-map {
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.lun-location-map iframe {
  display: block;
  min-height: 420px;
}

.lun-social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.lun-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lun-cream);
  border-radius: 50%;
  color: var(--lun-gray-700);
  transition: all 0.3s var(--lun-ease);
}

.lun-social-link:hover {
  background: var(--lun-red);
  color: var(--lun-white);
  transform: translateY(-2px);
}

/* ----------------------------------------
   CTA BANNER
   ---------------------------------------- */
.lun-cta {
  background: var(--lun-dark);
  position: relative;
  text-align: center;
  padding: 80px 0;
}

.lun-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 35, 32, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(27, 107, 90, 0.2) 0%, transparent 60%);
}

.lun-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.lun-cta h2 {
  font-family: var(--lun-font-accent);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--lun-white);
  margin: 0 0 16px 0;
}

.lun-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px 0;
}

.lun-cta .lun-hero-buttons {
  justify-content: center;
}

/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
@keyframes lunFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lunScrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Scroll-triggered fade-in class (applied via JS) */
.lun-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--lun-ease), transform 0.7s var(--lun-ease);
}

.lun-reveal.lun-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.lun-reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--lun-ease), transform 0.5s var(--lun-ease);
}

.lun-reveal-stagger.lun-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.lun-reveal-stagger.lun-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.lun-reveal-stagger.lun-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.lun-reveal-stagger.lun-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.lun-reveal-stagger.lun-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.lun-reveal-stagger.lun-visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .lun-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lun-about-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --lun-section-padding: 64px 0;
  }

  .lun-tiles-grid {
    gap: 12px;
  }

  .lun-tile-wide,
  .lun-tile {
    min-width: 140px;
    height: 170px;
  }

  .lun-about-grid,
  .lun-location-grid {
    grid-template-columns: 1fr;
  }

  .lun-about-grid {
    gap: 40px;
  }

  .lun-about-image-frame img {
    height: 320px;
  }

  .lun-about-stats {
    gap: 24px;
  }

  .lun-stat-number {
    font-size: 28px;
  }

  .lun-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lun-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lun-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .lun-hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .lun-location-map {
    min-height: 300px;
  }

  .lun-location-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .lun-container {
    padding: 0 16px;
  }

  .lun-about-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .lun-section-header {
    margin-bottom: 40px;
  }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* ----------------------------------------
   PAGE HERO (Reusable for inner pages)
   ---------------------------------------- */
.lun-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lun-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.lun-about-hero {
  background-image: url('/wp-content/uploads/about-hero-bg.jpg');
}

.lun-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(139, 35, 32, 0.5) 50%,
    rgba(27, 107, 90, 0.4) 100%
  );
  z-index: 1;
}

.lun-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 700px;
}

.lun-page-hero-title {
  font-family: var(--lun-font-accent);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--lun-white);
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.lun-page-hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------
   OUR STORY SECTION
   ---------------------------------------- */
.lun-story {
  background: var(--lun-white);
}

.lun-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lun-story-image {
  position: relative;
}

.lun-story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.lun-story-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--lun-green);
  border-radius: 12px;
  z-index: -1;
}

.lun-story-text p {
  font-size: 16px;
  color: var(--lun-gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ----------------------------------------
   MISSION / VALUES
   ---------------------------------------- */
.lun-mission {
  background: var(--lun-cream);
}

.lun-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lun-mission-card {
  background: var(--lun-white);
  padding: 48px 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--lun-gray-100);
  transition: transform 0.35s var(--lun-ease), box-shadow 0.35s var(--lun-ease);
}

.lun-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.lun-mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lun-green), var(--lun-green-light));
  border-radius: 50%;
  color: var(--lun-white);
}

.lun-mission-card h3 {
  font-family: var(--lun-font-accent);
  font-size: 22px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 14px 0;
}

.lun-mission-card p {
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------
   BY THE NUMBERS
   ---------------------------------------- */
.lun-numbers {
  background: var(--lun-dark);
  position: relative;
  padding: 80px 0;
}

.lun-numbers-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139, 35, 32, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(27, 107, 90, 0.15) 0%, transparent 60%);
}

.lun-label-light {
  color: var(--lun-gold);
}

.lun-title-light {
  color: var(--lun-white) !important;
}

.lun-accent-gold {
  color: var(--lun-gold-light);
  font-style: italic;
}

.lun-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.lun-number-item {
  text-align: center;
}

.lun-number-value {
  font-family: var(--lun-font-accent);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--lun-white);
  line-height: 1;
  display: inline;
}

.lun-number-plus {
  font-family: var(--lun-font-accent);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--lun-gold);
}

.lun-number-label {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

/* ----------------------------------------
   WHAT SETS US APART
   ---------------------------------------- */
.lun-apart {
  background: var(--lun-white);
}

.lun-apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lun-apart-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lun-apart-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.lun-apart-item-marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lun-cream);
  border-radius: 10px;
  font-family: var(--lun-font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--lun-red);
  border: 1px solid var(--lun-gray-100);
}

.lun-apart-item h4 {
  font-family: var(--lun-font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 6px 0;
}

.lun-apart-item p {
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.7;
  margin: 0;
}

.lun-apart-image {
  position: relative;
}

.lun-apart-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.lun-apart-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
}

.lun-apart-image-tag span {
  background: var(--lun-red);
  color: var(--lun-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lun-apart-image-tag span:last-child {
  background: var(--lun-green);
}

/* ----------------------------------------
   QUOTE BLOCK
   ---------------------------------------- */
.lun-quote-block {
  background: var(--lun-cream);
  padding: 80px 0;
}

.lun-quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.lun-quote-mark {
  font-family: var(--lun-font-accent);
  font-size: 120px;
  line-height: 1;
  color: var(--lun-red);
  opacity: 0.15;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.lun-quote-content blockquote {
  font-family: var(--lun-font-accent);
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: var(--lun-gray-700);
  line-height: 1.8;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 2;
}

/* ----------------------------------------
   ABOUT PAGE RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .lun-mission-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .lun-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .lun-page-hero {
    min-height: 40vh;
  }

  .lun-page-hero-content {
    padding: 60px 24px 48px;
  }

  .lun-story-grid,
  .lun-apart-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lun-story-image img {
    height: 320px;
  }

  .lun-story-image-accent {
    display: none;
  }

  .lun-apart-image img {
    height: 360px;
  }

  .lun-apart-image {
    order: -1;
  }

  .lun-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .lun-quote-mark {
    font-size: 80px;
    top: -24px;
  }
}

@media (max-width: 480px) {
  .lun-numbers-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lun-apart-item {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.lun-contact-hero {
  background-image: url('/wp-content/uploads/contact-hero-bg.jpg');
}

/* ----------------------------------------
   CONTACT INFO + MAP
   ---------------------------------------- */
.lun-contact-main {
  background: var(--lun-white);
}

.lun-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lun-contact-intro {
  font-size: 16px;
  color: var(--lun-gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lun-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lun-contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--lun-cream);
  border-radius: 12px;
  transition: transform 0.3s var(--lun-ease), box-shadow 0.3s var(--lun-ease);
  border: 1px solid transparent;
}

.lun-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--lun-gray-100);
}

.lun-contact-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lun-white);
  border-radius: 12px;
  color: var(--lun-red);
  border: 1px solid var(--lun-gray-100);
}

.lun-contact-card-body h4 {
  font-family: var(--lun-font-accent);
  font-size: 16px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 4px 0;
}

.lun-contact-card-body p {
  font-size: 14px;
  color: var(--lun-gray-500);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.lun-contact-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--lun-red);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s var(--lun-ease);
}

.lun-contact-card-link:hover {
  color: var(--lun-red-dark);
  text-decoration: none;
}

/* Map */
.lun-contact-map-wrap {
  position: sticky;
  top: 40px;
}

.lun-contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  min-height: 520px;
}

.lun-contact-map iframe {
  display: block;
  min-height: 520px;
  border-radius: 12px;
}

/* ----------------------------------------
   HOURS SECTION
   ---------------------------------------- */
.lun-hours {
  background: var(--lun-cream);
}

.lun-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lun-hours-info p {
  font-size: 16px;
  color: var(--lun-gray-500);
  line-height: 1.7;
}

.lun-hours-table-wrap {
  background: var(--lun-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--lun-gray-100);
}

.lun-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.lun-hours-table tr {
  border-bottom: 1px solid var(--lun-gray-100);
}

.lun-hours-table tr:last-child {
  border-bottom: none;
}

.lun-hours-table td {
  padding: 14px 0;
  font-size: 15px;
}

.lun-hours-day {
  font-family: var(--lun-font-accent);
  font-weight: 600;
  color: var(--lun-charcoal);
}

.lun-hours-time {
  text-align: right;
  color: var(--lun-gray-500);
}

.lun-hours-note {
  font-size: 13px;
  color: var(--lun-gray-300);
  font-style: italic;
  margin: 16px 0 0 0;
}

/* ----------------------------------------
   CONTACT FORM SECTION
   ---------------------------------------- */
.lun-contact-form-section {
  background: var(--lun-white);
}

.lun-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lun-contact-form-intro p {
  font-size: 16px;
  color: var(--lun-gray-500);
  line-height: 1.7;
}

.lun-contact-form-promise {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--lun-cream);
  border-radius: 10px;
}

.lun-contact-form-promise-icon {
  flex-shrink: 0;
  color: var(--lun-green);
}

.lun-contact-form-promise p {
  font-size: 14px;
  color: var(--lun-gray-500);
  margin: 0;
}

/* Ninja Forms wrapper styling */
.lun-contact-form-wrap {
  background: var(--lun-cream);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--lun-gray-100);
}

/* Style Ninja Forms inputs to match the theme */
.lun-contact-form-wrap .nf-form-content .nf-field-container {
  margin-bottom: 16px;
}

.lun-contact-form-wrap .nf-form-content input[type="text"],
.lun-contact-form-wrap .nf-form-content input[type="email"],
.lun-contact-form-wrap .nf-form-content input[type="tel"],
.lun-contact-form-wrap .nf-form-content select,
.lun-contact-form-wrap .nf-form-content textarea {
  font-family: var(--lun-font-base) !important;
  font-size: 15px !important;
  padding: 14px 16px !important;
  border: 1px solid var(--lun-gray-100) !important;
  border-radius: 8px !important;
  background: var(--lun-white) !important;
  color: var(--lun-charcoal) !important;
  transition: border-color 0.3s var(--lun-ease), box-shadow 0.3s var(--lun-ease) !important;
  width: 100% !important;
}

.lun-contact-form-wrap .nf-form-content input:focus,
.lun-contact-form-wrap .nf-form-content select:focus,
.lun-contact-form-wrap .nf-form-content textarea:focus {
  border-color: var(--lun-red) !important;
  box-shadow: 0 0 0 3px rgba(139, 35, 32, 0.1) !important;
  outline: none !important;
}

.lun-contact-form-wrap .nf-form-content textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

.lun-contact-form-wrap .nf-form-content .nf-field-label label {
  font-family: var(--lun-font-accent) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--lun-charcoal) !important;
  margin-bottom: 6px !important;
}

.lun-contact-form-wrap .nf-form-content input[type="submit"],
.lun-contact-form-wrap .nf-form-content .nf-element.submit-container input {
  font-family: var(--lun-font-base) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  background: var(--lun-red) !important;
  color: var(--lun-white) !important;
  border: 2px solid var(--lun-red) !important;
  padding: 14px 32px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.35s var(--lun-ease) !important;
}

.lun-contact-form-wrap .nf-form-content input[type="submit"]:hover {
  background: var(--lun-red-dark) !important;
  border-color: var(--lun-red-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(139, 35, 32, 0.3) !important;
}

/* Placeholder for form if Ninja Forms not yet set up */
.lun-form-placeholder {
  text-align: center;
  padding: 20px;
  color: var(--lun-gray-500);
  font-size: 14px;
}

/* ----------------------------------------
   CONTACT PAGE RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .lun-contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lun-contact-grid,
  .lun-hours-grid,
  .lun-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lun-contact-map-wrap {
    position: static;
  }

  .lun-contact-map,
  .lun-contact-map iframe {
    min-height: 350px;
  }

  .lun-contact-form-wrap {
    padding: 28px 20px;
  }

  .lun-contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CUSTOM FOOTER STYLES
   ============================================ */

/* Hide OceanWP default footer */
#footer,
#footer-widgets,
#footer-bottom {
  display: none !important;
}

.lun-footer {
  font-family: var(--lun-font-base);
}

.lun-footer-main {
  background: var(--lun-cream-dark);
  padding: 48px 0;
  border-top: 3px solid var(--lun-red);
}

.lun-footer-container {
  max-width: var(--lun-container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.lun-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.lun-footer-heading {
  font-family: var(--lun-font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 20px 0;
}

.lun-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lun-footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lun-gray-700);
  font-size: 15px;
  transition: color 0.3s var(--lun-ease);
}

.lun-footer-contact-list li a:hover {
  color: var(--lun-red);
}

.lun-footer-contact-list li a svg {
  flex-shrink: 0;
  color: var(--lun-red);
}

.lun-footer-hours {
  border-collapse: collapse;
  width: 100%;
}

.lun-footer-hours td {
  padding: 6px 0;
  font-size: 15px;
  color: var(--lun-gray-700);
}

.lun-footer-hours td:first-child {
  font-weight: 700;
  color: var(--lun-charcoal);
  padding-right: 16px;
  white-space: nowrap;
}

.lun-footer-hours td:last-child {
  white-space: nowrap;
}

.lun-footer-hours-note {
  font-size: 12px;
  color: var(--lun-gray-300);
  font-style: italic;
  margin: 10px 0 0 0;
}

.lun-footer-social {
  display: flex;
  gap: 12px;
}

.lun-footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lun-white);
  border-radius: 50%;
  color: var(--lun-gray-700);
  border: 1px solid var(--lun-gray-100);
  transition: all 0.3s var(--lun-ease);
}

.lun-footer-social a:hover {
  background: var(--lun-red);
  color: var(--lun-white);
  border-color: var(--lun-red);
  transform: translateY(-2px);
}


.lun-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.lun-footer-links li a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.lun-footer-links li a:hover {
  color: var(--lun-green);
}

.lun-footer-bottom {
  background: var(--lun-charcoal);
  padding: 16px 0;
}

.lun-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lun-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.lun-footer-copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s var(--lun-ease);
}

.lun-footer-copyright a:hover {
  color: var(--lun-white);
}

.lun-footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lun-footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s var(--lun-ease);
}

.lun-footer-bottom-links a:hover {
  color: var(--lun-white);
}

@media (max-width: 768px) {
  .lun-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lun-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .lun-footer-bottom-links {
    justify-content: center;
  }
}

/* ============================================
   CUSTOM HEADER STYLES
   ============================================ */

/* Hide OceanWP default header */
#site-header,
#site-navigation-wrap,
#site-header-inner,
.oceanwp-mobile-menu-icon,
#mobile-fullscreen,
#site-navigation {
  display: none !important;
}

.lun-header {
  font-family: var(--lun-font-base);
  position: relative;
  z-index: 9999;
}

.lun-header-container {
  max-width: var(--lun-container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ----------------------------------------
   1. Top Bar
   ---------------------------------------- */
.lun-header-topbar {
  background: var(--lun-cream-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 0;
}

.lun-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lun-topbar-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lun-topbar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lun-gray-700);
  text-decoration: none;
  transition: color 0.3s var(--lun-ease);
}

.lun-topbar-contact a:hover {
  color: var(--lun-red);
}

.lun-topbar-contact a svg {
  color: var(--lun-red);
  flex-shrink: 0;
}

.lun-topbar-social {
  display: flex;
  gap: 12px;
}

.lun-topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lun-gray-700);
  transition: color 0.3s var(--lun-ease);
}

.lun-topbar-social a:hover {
  color: var(--lun-red);
}

/* ----------------------------------------
   2. Logo Section (barrel background)
   ---------------------------------------- */
.lun-header-logo-section {
  position: relative;
  overflow: hidden;
}

.lun-header-logo-bg {
  position: absolute;
  inset: 0;
  background: url('/wp-content/uploads/2026/02/header-bg.jpg-scaled.jpg') center center / cover no-repeat;
  background-color: var(--lun-dark);
  z-index: 0;
}

.lun-header-logo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
}

.lun-header-logo-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
}

.lun-header-logo-link {
  display: block;
}

.lun-header-logo-link img {
  height: 180px;
  width: auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--lun-ease);
}

.lun-header-logo-link img:hover {
  transform: scale(1.03);
}

/* ----------------------------------------
   3. Navigation Bar
   ---------------------------------------- */
.lun-header-navbar {
  background: var(--lun-cream-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lun-header-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lun-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lun-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

.lun-nav-list li {
  position: relative;
}

.lun-nav-list li a {
  display: block;
  padding: 14px 20px;
  font-family: var(--lun-font-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--lun-gray-700);
  text-decoration: none;
  transition: all 0.3s var(--lun-ease);
  white-space: nowrap;
}

.lun-nav-list li a:hover,
.lun-nav-list li.current-menu-item > a,
.lun-nav-list li.current_page_item > a {
  color: var(--lun-red);
}

/* Dropdown arrow for items with children */
.lun-nav-list li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.5;
}

/* Dropdown menu */
.lun-nav-list li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--lun-white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 210px;
  padding: 6px 0;
  z-index: 100;
}
/* Invisible bridge so hover doesn't break */
.lun-nav-list li.menu-item-has-children {
  position: relative;
}

.lun-nav-list li.menu-item-has-children::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  display: none;
}

.lun-nav-list li.menu-item-has-children:hover::after {
  display: block;
}

.lun-nav-list li:hover > ul.sub-menu {
  display: block;
}

.lun-nav-list li ul.sub-menu li a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--lun-gray-700);
}

.lun-nav-list li ul.sub-menu li a:hover {
  color: var(--lun-red);
  background: var(--lun-cream);
}

/* Nested sub-menu */
.lun-nav-list li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  border-radius: 0 8px 8px 0;
}

/* ----------------------------------------
   Mobile Menu Toggle
   ---------------------------------------- */
.lun-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.lun-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lun-charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--lun-ease);
}

.lun-mobile-toggle.lun-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.lun-mobile-toggle.lun-active span:nth-child(2) {
  opacity: 0;
}

.lun-mobile-toggle.lun-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------
   Header Responsive
   ---------------------------------------- */
@media (max-width: 960px) {
  .lun-topbar-contact {
    gap: 12px;
  }

  .lun-topbar-contact a span {
    display: none;
  }

  .lun-topbar-contact a svg {
    width: 18px;
    height: 18px;
  }

  .lun-header-logo-link img {
    height: 120px;
  }

  .lun-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--lun-charcoal);
    padding: 80px 0 24px;
    transition: right 0.35s var(--lun-ease);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 9998;
    display: block;
  }

  .lun-header-nav.lun-nav-open {
    right: 0;
  }

  .lun-nav-list {
    flex-direction: column;
    gap: 0;
  }

  .lun-nav-list li a {
    padding: 14px 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lun-nav-list li a:hover,
  .lun-nav-list li.current-menu-item > a {
    color: var(--lun-white);
    background: rgba(255, 255, 255, 0.05);
  }

  .lun-nav-list li.menu-item-has-children > a::after {
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  /* FIXED: Submenus hidden by default on mobile, tap to open */
  .lun-nav-list li ul.sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }

  /* Show submenu only when parent has the open class (toggled by JS) */
  .lun-nav-list li.lun-submenu-open > ul.sub-menu {
    display: block;
  }

  .lun-nav-list li ul.sub-menu li a {
    color: rgba(255, 255, 255, 0.65);
    padding-left: 40px;
    background: transparent;
    font-size: 14px;
  }

  .lun-nav-list li ul.sub-menu li a:hover {
    color: var(--lun-white);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Rotate arrow when submenu is open */
  .lun-nav-list li.lun-submenu-open.menu-item-has-children > a::after {
    border-top: 0;
    border-bottom: 4px solid currentColor;
  }

  .lun-mobile-toggle {
    display: flex;
  }

  .lun-header-navbar-inner {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .lun-header-logo-link img {
    height: 75px;
  }

  .lun-header-logo-inner {
    padding: 14px 0;
  }
}

/* Mobile nav overlay */
.lun-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
}

.lun-nav-overlay.lun-active {
  display: block;
}

/* ============================================
   GREEN ACCENT ADDITIONS
   ============================================ */

/* Green button variant */
.lun-btn-green {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--lun-font-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  background: var(--lun-green);
  color: var(--lun-white);
  border: 2px solid var(--lun-green);
  transition: all 0.35s var(--lun-ease);
  cursor: pointer;
}

.lun-btn-green:hover {
  background: var(--lun-green-dark);
  border-color: var(--lun-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 107, 90, 0.3);
  color: var(--lun-white);
  text-decoration: none;
}

/* Dark outline button */
.lun-btn-outline-dark {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--lun-font-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  background: transparent;
  color: var(--lun-charcoal);
  border: 2px solid var(--lun-gray-300);
  transition: all 0.35s var(--lun-ease);
  cursor: pointer;
}

.lun-btn-outline-dark:hover {
  border-color: var(--lun-green);
  color: var(--lun-green);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Green accent on section labels */
.lun-label {
  color: var(--lun-green);
}

/* Green border accent on top bar */
.lun-header-topbar {
  border-bottom: 2px solid var(--lun-green);
}

/* Green bottom border on navbar */
.lun-header-navbar {
  border-bottom: 2px solid var(--lun-green);
}

/* Green top border on footer */
.lun-footer-main {
  border-top: 3px solid var(--lun-green);
}

/* Green feature icons (alternate every other) */
.lun-feature-card:nth-child(even) .lun-feature-icon {
  background: linear-gradient(135deg, var(--lun-green), var(--lun-green-light));
}

/* Green stat numbers */
.lun-stat-number {
  color: var(--lun-green);
}

.lun-stat-plus {
  color: var(--lun-green);
}

/* Green active nav indicator */
.lun-nav-list li.current-menu-item > a,
.lun-nav-list li.current_page_item > a {
  color: var(--lun-green) !important;
}

/* Green location icons */
.lun-location-item-icon {
  color: var(--lun-green);
}

/* Green contact card icons */
.lun-contact-card-icon {
  color: var(--lun-green);
}

/* Green footer contact icons */
.lun-footer-contact-list li a svg {
  color: var(--lun-green);
}

/* Green scroll indicator */
.lun-hero-scroll-indicator span {
  color: rgba(27, 107, 90, 0.7);
}

.lun-scroll-line {
  background: linear-gradient(to bottom, var(--lun-green), transparent);
}

/* ============================================
   SEARCH — Bar Below Navbar
   ============================================ */
.search-toggle-li {
  position: static !important;
}

.lun-inline-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0;
  overflow: hidden;
  background: var(--lun-cream);
  border-top: 2px solid var(--lun-green);
  transition: height 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-toggle-li.lun-search-active .lun-inline-search,
.lun-inline-search.lun-search-active {
  height: 56px;
}

.lun-inline-search-input {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 10px auto;
  padding: 10px 16px;
  font-family: var(--lun-font-base);
  font-size: 15px;
  border: 2px solid var(--lun-gray-300) !important;
  border-radius: 6px;
  background: var(--lun-white) !important;
  color: var(--lun-charcoal) !important;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  text-align: left;
}

.lun-inline-search {
  text-align: center;
  padding: 0 24px;
}

.lun-inline-search-input:focus {
  border-color: var(--lun-green) !important;
}

.lun-inline-search-input::placeholder {
  color: var(--lun-gray-300);
}

/* Make navbar relative so search positions below it */
.lun-header-navbar {
  position: relative;
}

/* ============================================
   CONTACT PAGE — WIDE LAYOUT STYLES
   ============================================ */

/* Force full width ONLY on our custom Lundeen's pages — not WooCommerce */
body:not(.woocommerce):has(.lun-page-hero) #content-wrap,
body:not(.woocommerce):has(.lun-hero) #content-wrap,
body:not(.woocommerce):has(.lun-faq-section) #content-wrap {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

body:not(.woocommerce):has(.lun-page-hero) .content-area,
body:not(.woocommerce):has(.lun-hero) .content-area,
body:not(.woocommerce):has(.lun-faq-section) .content-area {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  float: none !important;
}

body:not(.woocommerce):has(.lun-page-hero) .entry-content,
body:not(.woocommerce):has(.lun-hero) .entry-content,
body:not(.woocommerce):has(.lun-faq-section) .entry-content {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Wide container override */
.lun-container-wide {
  max-width: 1400px;
}

/* Full-width contact info section */
.lun-contact-info-wide {
  background: var(--lun-cream);
  padding: 80px 0;
}

.lun-contact-info-wide .lun-section-header {
  max-width: 700px;
  margin: 0 auto 48px;
}

/* 4-column contact cards row */
.lun-contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lun-contact-cards-row .lun-contact-card {
  background: var(--lun-white);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid var(--lun-gray-100);
  text-align: left;
  transition: all 0.3s var(--lun-ease);
}

.lun-contact-cards-row .lun-contact-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.lun-contact-cards-row .lun-contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--lun-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lun-green);
  margin-bottom: 20px;
}

.lun-contact-cards-row .lun-contact-card-body h4 {
  font-family: var(--lun-font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 8px 0;
}

.lun-contact-cards-row .lun-contact-card-body p {
  font-size: 14px;
  color: var(--lun-gray-500);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.lun-contact-cards-row .lun-contact-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--lun-green);
  text-decoration: none;
  transition: color 0.3s var(--lun-ease);
}

.lun-contact-cards-row .lun-contact-card-link:hover {
  color: var(--lun-red);
}

/* Full-width map */
.lun-contact-map-full-section {
  width: 100%;
  height: 400px;
  overflow: hidden;
  line-height: 0;
}

.lun-contact-map-full-section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact cards responsive */
@media (max-width: 960px) {
  .lun-contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .lun-contact-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.lun-privacy-hero {
  background-image: url('https://lundeenssycamore.com/wp-content/uploads/2026/02/header-bg.jpg-scaled.jpg');
}

.lun-privacy-section {
  background: var(--lun-white);
}

.lun-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.lun-privacy-updated {
  font-size: 14px;
  color: var(--lun-gray-500);
  font-style: italic;
  margin-bottom: 32px;
}

.lun-privacy-content h2 {
  font-family: var(--lun-font-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--lun-charcoal);
  margin: 40px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lun-cream);
}

.lun-privacy-content h3 {
  font-family: var(--lun-font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 24px 0 12px 0;
}

.lun-privacy-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--lun-gray-500);
  margin: 0 0 16px 0;
}

.lun-privacy-content a {
  color: var(--lun-green);
  text-decoration: none;
  font-weight: 600;
}

.lun-privacy-content a:hover {
  color: var(--lun-red);
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.lun-faq-hero {
  background-image: url('https://lundeenssycamore.com/wp-content/uploads/2026/02/header-bg.jpg-scaled.jpg');
}

/* Layout */
.lun-faq-section {
  background: var(--lun-cream);
}

.lun-faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Categories */
.lun-faq-category {
  margin-bottom: 40px;
}

.lun-faq-category-title {
  font-family: var(--lun-font-accent);
  font-size: 22px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lun-green);
}

.lun-faq-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lun-green);
}

/* Accordion Items */
.lun-faq-item {
  background: var(--lun-white);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--lun-gray-100);
  overflow: hidden;
  transition: box-shadow 0.3s var(--lun-ease);
}

.lun-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.lun-faq-item.lun-faq-active {
  border-color: var(--lun-green);
  box-shadow: 0 4px 20px rgba(27, 107, 90, 0.1);
}

.lun-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--lun-font-accent);
  font-size: 16px;
  font-weight: 600;
  color: var(--lun-charcoal);
  text-align: left;
  gap: 16px;
  transition: color 0.3s var(--lun-ease);
}

.lun-faq-question:hover {
  color: var(--lun-green);
}

.lun-faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lun-cream);
  position: relative;
  transition: all 0.3s var(--lun-ease);
}

.lun-faq-toggle::before,
.lun-faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--lun-green);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--lun-ease);
}

.lun-faq-toggle::before {
  width: 12px;
  height: 2px;
}

.lun-faq-toggle::after {
  width: 2px;
  height: 12px;
}

.lun-faq-active .lun-faq-toggle {
  background: var(--lun-green);
}

.lun-faq-active .lun-faq-toggle::before,
.lun-faq-active .lun-faq-toggle::after {
  background: var(--lun-white);
}

.lun-faq-active .lun-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lun-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--lun-ease), padding 0.4s var(--lun-ease);
  padding: 0 24px;
}

.lun-faq-active .lun-faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.lun-faq-answer p {
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.8;
  margin: 0 0 10px 0;
}

.lun-faq-answer p:last-child {
  margin-bottom: 0;
}

.lun-faq-answer a {
  color: var(--lun-green);
  text-decoration: none;
  font-weight: 600;
}

.lun-faq-answer a:hover {
  color: var(--lun-green-dark);
  text-decoration: underline;
}

/* Sidebar */
.lun-faq-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lun-faq-sidebar-card {
  background: var(--lun-white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--lun-gray-100);
}

.lun-faq-sidebar-card h3 {
  font-family: var(--lun-font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--lun-charcoal);
  margin: 0 0 10px 0;
}

.lun-faq-sidebar-card p {
  font-size: 15px;
  color: var(--lun-gray-500);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.lun-faq-sidebar-note {
  font-size: 12px !important;
  color: var(--lun-gray-300) !important;
  font-style: italic;
}

.lun-faq-sidebar-hours {
  border-left: 3px solid var(--lun-green);
}

.lun-faq-sidebar-location {
  border-left: 3px solid var(--lun-red);
}

/* FAQ Responsive */
@media (max-width: 960px) {
  .lun-faq-layout {
    grid-template-columns: 1fr;
  }

  .lun-faq-sidebar {
    position: static;
  }
}

@media (max-width: 480px) {
  .lun-faq-question {
    padding: 14px 16px;
    font-size: 15px;
  }

  .lun-faq-answer {
    padding: 0 16px;
  }

  .lun-faq-active .lun-faq-answer {
    padding: 0 16px 16px;
  }
}

/* ============================================
   TOP BAR SEARCH + CART
   ============================================ */

.lun-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lun-topbar-search {
  display: flex;
  align-items: center;
  background: var(--lun-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
  height: 34px;
}

.lun-topbar-search-input {
  width: 180px;
  height: 34px;
  border: 0 !important;
  outline: none;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 10px;
  font-family: var(--lun-font-base);
  font-size: 13px;
  color: var(--lun-charcoal);
}

.lun-topbar-search-input::placeholder {
  color: var(--lun-gray-300);
}

.lun-topbar-search-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--lun-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--lun-ease);
}

.lun-topbar-search-btn:hover {
  color: var(--lun-green);
  background: var(--lun-cream);
}

.lun-topbar-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 10px;
  background: transparent;
  color: var(--lun-gray-700);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s var(--lun-ease);
}

.lun-topbar-cart:hover {
  color: var(--lun-green);
  text-decoration: none;
}

.lun-topbar-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--lun-green);
  color: var(--lun-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.lun-topbar-social {
  display: flex;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
  .lun-topbar-contact {
    gap: 14px;
  }

  .lun-topbar-search-input {
    width: 140px;
  }
}

@media (max-width: 960px) {
  .lun-topbar-inner {
    gap: 10px;
  }

  .lun-topbar-right {
    gap: 8px;
  }

  .lun-topbar-search-input {
    width: 110px;
  }

  .lun-topbar-cart span:not(.lun-topbar-cart-count) {
    display: none;
  }
}
@media (max-width: 768px) {
  .lun-topbar-inner {
    justify-content: space-between;
  }

  .lun-topbar-right {
    gap: 6px;
  }

  .lun-topbar-search {
    display: flex;
    width: auto;
    min-width: 0;
  }

  .lun-topbar-search-input {
    width: 88px;
    padding: 0 8px;
    font-size: 12px;
  }

  .lun-topbar-search-input::placeholder {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .lun-topbar-right {
    gap: 4px;
  }

  .lun-topbar-search-input {
    width: 70px;
    padding: 0 6px;
    font-size: 11px;
  }

  .lun-topbar-cart {
    padding: 0 6px;
  }
}

/* ============================================
   MOBILE SEARCH TOGGLE
   ============================================ */

.lun-header-topbar {
  position: relative;
}

.lun-topbar-search-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--lun-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s var(--lun-ease), background 0.3s var(--lun-ease);
}

.lun-topbar-search-toggle:hover {
  color: var(--lun-green);
}

.lun-topbar-search-drawer {
  display: none;
  width: 100%;
  background: var(--lun-cream-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 24px;
}

.lun-topbar-search-drawer.lun-active {
  display: block;
}

.lun-topbar-search-form {
  display: flex;
  align-items: center;
  background: var(--lun-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
  max-width: 420px;
  margin-left: auto;
}

.lun-topbar-search-form .lun-topbar-search-input {
  flex: 1;
  width: 100%;
  height: 38px;
  border: 0 !important;
  outline: none;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 12px;
  font-family: var(--lun-font-base);
  font-size: 14px;
  color: var(--lun-charcoal);
}

.lun-topbar-search-form .lun-topbar-search-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--lun-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Desktop: keep normal full search visible, hide icon/drawer */
@media (min-width: 769px) {
  .lun-topbar-search-toggle {
    display: none;
  }

  .lun-topbar-search-drawer {
    display: none !important;
  }

  .lun-topbar-search {
    display: flex;
  }
}

/* Mobile: hide inline search, show icon */
@media (max-width: 768px) {
  .lun-topbar-search {
    display: none;
  }

  .lun-topbar-search-toggle {
    display: flex;
  }

  .lun-topbar-cart span:not(.lun-topbar-cart-count) {
    display: none;
  }
}

@media (max-width: 480px) {
  .lun-topbar-search-drawer {
    padding: 8px 16px;
  }
}

/* ============================================
   NOTICE BAR (Reserve page)
   ============================================ */
.lun-notice-bar {
  background: var(--lun-red, #b91c1c);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 100%;
}