/*
Theme Name: Lawman Tactical
Theme URI: https://lawmantactical.com
Author: Lawman Tactical
Author URI: https://lawmantactical.com
Description: A custom WordPress theme for Lawman Tactical - Evansville's Premier Guntry Club & Tactical Training Facility. Features a modern, patriotic design focused on firearms training, tactical fitness, and community.
Version: 1.6.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lawman-tactical
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

:root {
  --primary-red: #dc2626;
  --primary-red-hover: #b91c1c;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --white: #ffffff;
  --black: #000000;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-900);
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.site-header {
  background-color: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background-color: var(--primary-red);
  padding: 0.5rem;
  border-radius: 4px;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.logo-text-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--neutral-600);
}

/* Navigation (legacy nav-menu kept for footer / fallback contexts) */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  flex-wrap: wrap;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: var(--primary-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--neutral-900);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--neutral-100);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--neutral-900);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hamburger button — visible at all breakpoints */
.nav-hamburger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-900);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.nav-hamburger:hover { background-color: rgba(0, 0, 0, 0.05); }
.nav-hamburger:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}
.nav-hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Slide-out drawer (light theme) */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  color: var(--neutral-900);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 99;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-backdrop[hidden] { display: block; }

body.nav-drawer-open { overflow: hidden; }

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--neutral-200);
  background: var(--neutral-50);
}
.nav-drawer__title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 700;
}
.nav-drawer__close {
  background: none;
  border: none;
  color: var(--neutral-600);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-drawer__close:hover {
  color: var(--primary-red);
  background-color: var(--neutral-100);
}

.nav-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer__menu,
.nav-drawer__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer__menu > li {
  border-bottom: 1px solid var(--neutral-100);
}

.nav-drawer__menu a {
  display: block;
  padding: 14px 24px;
  color: var(--neutral-900);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-drawer__menu a:hover,
.nav-drawer__menu .current-menu-item > a {
  color: var(--primary-red);
  background-color: var(--neutral-50);
}

/* Sub-menu (collapsible) */
.nav-drawer__menu .menu-item-has-children { position: relative; }
.nav-drawer__menu .menu-item-has-children > a { padding-right: 56px; }
.nav-drawer__menu .submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 49px;
  background: none;
  border: none;
  color: var(--neutral-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.2s ease;
}
.nav-drawer__menu .submenu-toggle:hover { color: var(--primary-red); }
.nav-drawer__menu .submenu-toggle::before {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}
.nav-drawer__menu .menu-item-has-children.is-open > .submenu-toggle::before {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-drawer__menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  background-color: var(--neutral-50);
  transition: max-height 0.3s ease;
}
.nav-drawer__menu .menu-item-has-children.is-open > .sub-menu {
  max-height: 1200px;
}
.nav-drawer__menu .sub-menu a {
  padding: 11px 24px 11px 44px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--neutral-700);
  text-transform: none;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}
.nav-drawer__menu .sub-menu a:hover {
  color: var(--primary-red);
  background-color: var(--neutral-100);
}

.nav-drawer__cta {
  display: block;
  margin: 20px 24px;
  text-align: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-color: var(--neutral-900);
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  display: none; /* Hidden on mobile by default */
}

/* Show video only on tablet and larger screens */
@media (min-width: 768px) {
  .hero-video {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 1rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-300);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-bg-gray {
  background-color: var(--neutral-50);
}

.section-bg-white {
  background-color: var(--white);
}

.section-bg-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  text-align: center;
  margin-bottom: 3rem;
}

.section-bg-primary .section-title,
.section-bg-primary .section-subtitle {
  color: var(--white);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 2rem;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Facility Cards */
.facility-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover img {
  transform: scale(1.1);
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3) 60%, transparent);
}

.facility-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
}

.facility-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.facility-description {
  font-size: 0.875rem;
  color: var(--neutral-200);
}

/* Membership Cards */
.membership-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.membership-card.popular {
  border: 4px solid var(--primary-red);
  transform: scale(1.05);
}

.membership-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-red);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}

.membership-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.membership-price {
  margin-bottom: 1.5rem;
}

.membership-price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.membership-price-period {
  color: var(--neutral-600);
}

.membership-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.membership-features li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.membership-features li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Membership Table */
.membership-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.membership-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.membership-table th,
.membership-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--neutral-200);
}

.membership-table thead th {
  background-color: var(--neutral-900);
  color: var(--white);
  font-weight: 700;
  position: relative;
  padding: 2rem 1rem;
}

.membership-table th.popular-column {
  background-color: var(--primary-red);
}

.membership-table td.popular-column {
  background-color: rgba(220, 38, 38, 0.05);
}

.membership-table th.feature-column {
  text-align: left;
  background-color: var(--neutral-50);
  color: var(--neutral-900);
  font-weight: 600;
  min-width: 200px;
}

.membership-table td.feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--neutral-700);
}

.membership-badge-table {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.membership-name-table {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.membership-price-table {
  margin-top: 0.5rem;
}

.membership-price-table .price-amount {
  font-size: 2rem;
  font-weight: 700;
}

.membership-price-table .price-period {
  font-size: 0.875rem;
  opacity: 0.8;
}

.feature-check {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-cross {
  color: var(--neutral-300);
  font-size: 1.25rem;
}

.membership-table tr.cta-row td {
  padding: 1.5rem 1rem;
  border-bottom: none;
}

.btn-table {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-table.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-table.btn-primary:hover {
  background-color: var(--primary-red-hover);
}

.btn-table.btn-secondary {
  background-color: var(--neutral-900);
  color: var(--white);
}

.btn-table.btn-secondary:hover {
  background-color: var(--neutral-700);
}

/* Responsive adjustments for membership table */
@media (max-width: 768px) {
  .membership-table {
    font-size: 0.875rem;
  }

  .membership-table th,
  .membership-table td {
    padding: 0.75rem 0.5rem;
  }

  .membership-name-table {
    font-size: 1rem;
  }

  .membership-price-table .price-amount {
    font-size: 1.5rem;
  }

  .btn-table {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-title {
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: var(--primary-red);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--neutral-700);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  color: var(--neutral-500);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: var(--neutral-900);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  font-size: 0.875rem;
  color: var(--neutral-400);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-400);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

/* =========================================================================
   Membership Packages — light theme matching site
   ========================================================================= */
.lt-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
}
.lt-toggle-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-400);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.lt-toggle-label.is-active { color: var(--primary-red); }
.lt-toggle-label small { font-size: 0.7em; opacity: 0.7; margin-left: 0.25rem; }
.lt-toggle {
  width: 56px;
  height: 30px;
  background-color: var(--neutral-200);
  border: 1px solid var(--neutral-300);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.lt-toggle.is-on { background-color: var(--primary-red); border-color: var(--primary-red); }
.lt-toggle__knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.lt-toggle.is-on .lt-toggle__knob { transform: translateX(26px); }
.lt-toggle:focus-visible { outline: 2px solid var(--primary-red); outline-offset: 3px; }

/* Grid */
.lt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .lt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lt-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

/* Card */
.lt-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.lt-card--featured {
  border: 2px solid var(--primary-red);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}
.lt-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--primary-red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-bottom-left-radius: 8px;
  font-weight: 600;
}

.lt-card__head {
  padding: 1.75rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  text-align: center;
}
.lt-card__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-900);
  margin: 0;
}
.lt-card--featured .lt-card__name { color: var(--primary-red); }
.lt-card__tagline {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
  font-style: italic;
}
.lt-card__price {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  min-height: 2.5rem;
}
.lt-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1;
}
.lt-price small { font-size: 1.125rem; font-weight: 500; }
.lt-card--featured .lt-price { color: var(--primary-red); }
.lt-price--unavailable {
  font-size: 1.25rem !important;
  color: var(--neutral-400) !important;
  font-style: italic;
  font-weight: 500;
}
.lt-price__suffix {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 400;
}
.lt-card__plan-note {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin-top: 0.5rem;
  text-align: center;
}
.lt-card__plan-note strong { color: var(--neutral-900); }
.lt-card__plan-sub {
  font-size: 0.75rem;
  color: var(--neutral-400);
  font-style: italic;
  margin-top: 0.25rem;
  text-align: center;
}

/* Body / features */
.lt-card__body {
  padding: 1.25rem;
  flex: 1;
}
.lt-feature-group { margin-bottom: 1.25rem; }
.lt-feature-group:last-child { margin-bottom: 0; }
.lt-feature-group__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--primary-red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.lt-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--neutral-700);
  line-height: 1.4;
  border-bottom: 1px solid var(--neutral-100);
}
.lt-feature:last-child { border-bottom: none; }
.lt-feature--dimmed { color: var(--neutral-400); }
.lt-feature--dimmed .lt-feature__text { text-decoration: line-through; }
.lt-feature__icon {
  flex-shrink: 0;
  width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lt-check {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.95rem;
}
.lt-cross {
  color: var(--neutral-300);
  font-weight: 700;
}
.lt-feature__text strong { color: var(--neutral-900); font-weight: 700; }
.lt-feature__text em { color: var(--neutral-400); font-style: italic; }

/* CTA */
.lt-card__cta { padding: 0 1.25rem 1.5rem; text-align: center; }
.lt-card__cta .btn { width: 100%; padding: 0.75rem 1rem; }
.btn-outline-dark {
  background-color: transparent;
  color: var(--neutral-900);
  border: 2px solid var(--neutral-900);
}
.btn-outline-dark:hover {
  background-color: var(--neutral-900);
  color: var(--white);
}

/* Corporate banner */
.lt-corp {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-left: 4px solid var(--primary-red);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.lt-corp__left { flex: 1 1 220px; min-width: 200px; }
.lt-corp__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-900);
}
.lt-corp__desc {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
}
.lt-corp__price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-red);
  white-space: nowrap;
}
.lt-corp__price span {
  font-size: 0.8125rem;
  color: var(--neutral-400);
  font-weight: 400;
  margin-left: 0.125rem;
}
.lt-corp__features {
  display: flex;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  flex: 2 1 320px;
}
.lt-corp__feat {
  font-size: 0.8125rem;
  color: var(--neutral-700);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lt-corp__feat::before {
  content: '\2713';
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.875rem;
}

.lt-footer-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--neutral-600);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.lt-footer-note a {
  color: var(--primary-red);
  text-decoration: underline;
}

/* =========================================================================
   Our Story (page-our-story.php) — scoped under .our-story
   ========================================================================= */
.our-story .os-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c0a0a 60%, #1a1a1a 100%);
  color: var(--white);
  padding: 5rem 1rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.our-story .os-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(220, 38, 38, 0.05) 40px, rgba(220, 38, 38, 0.05) 80px);
  pointer-events: none;
}
.our-story .os-hero .container { position: relative; }
.os-hero__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 0.75rem;
}
.os-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.os-hero__sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Prose blocks */
.os-prose { max-width: 90%; margin: 0 auto; }
.os-prose p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--neutral-700);
  margin-bottom: 1.25rem;
}
.os-prose .section-title { margin-bottom: 1.5rem; }
.os-prose.text-center, .os-prose .text-center { text-align: center; }
.os-h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-900);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-red);
  display: inline-block;
}

.os-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.os-features li {
  background: var(--neutral-50);
  border-left: 3px solid var(--primary-red);
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.5;
  border-radius: 0 4px 4px 0;
}
.os-features strong { color: var(--neutral-900); }

.os-callout {
  background: var(--neutral-50);
  border-left: 4px solid var(--primary-red);
  padding: 1.25rem 1.5rem;
  font-style: italic;
  color: var(--neutral-700);
  margin-top: 2rem !important;
  border-radius: 0 6px 6px 0;
}

/* Mission */
.os-mission { text-align: center; }
.os-mission__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.os-mission__quote {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  max-width: 48rem;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* What If */
.os-whatif {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.os-whatif li {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-top: 3px solid var(--primary-red);
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-700);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .os-whatif { grid-template-columns: 1fr 1fr; }
}

/* The Dream */
.os-dream {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 64rem;
}
@media (min-width: 900px) {
  .os-dream {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}
.os-dream__photo {
  position: sticky;
  top: 6rem;
  text-align: center;
}
@media (max-width: 899px) {
  .os-dream__photo { position: static; max-width: 280px; margin: 0 auto; }
}
.os-dream__photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--white);
  outline: 1px solid var(--neutral-200);
}
.os-dream__caption {
  margin-top: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 600;
}
.os-dream__text .section-title { margin-bottom: 1.5rem; }
.os-dream__text .os-h3:first-of-type { margin-top: 1.5rem; }
.os-dream__sig {
  font-family: 'Oswald', sans-serif;
  font-style: normal !important;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-900);
  margin-top: 2rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--neutral-200);
}

/* CTA */
.os-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Events Page
   ═══════════════════════════════════════════════════════════════════════════ */

/* Events page reuses .os-hero from Our Story */

/* Image-only hero (no text overlay) */
.ep-hero-img {
  width: 100%;
  background: var(--neutral-900);
}
.ep-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* Event content area — style shortcode output */
.ep-content {
  max-width: 90%;
  margin: 0 auto;
}
.ep-content .mms-calendar-event,
.ep-content .calendar-event-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ep-content .mms-calendar-event:hover,
.ep-content .calendar-event-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.ep-content .mms-calendar-event img,
.ep-content .calendar-event-card img {
  border-radius: 0.375rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ep-content h3,
.ep-content .event-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-900);
  margin: 0.75rem 0 0.5rem;
}
.ep-content .event-date,
.ep-content time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ep-content .event-description,
.ep-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--neutral-600);
}

