/* Security Cocktail Hour Website - Main Stylesheet */

/* ===================================
   CSS Variables (Design System) - Art Deco
   =================================== */
:root {
  /* Art Deco Color Palette */
  --red: #D74444;
  --red-dark: #A63333;
  --navy: #2B4D7D;
  --navy-light: #3A5F99;
  --navy-dark: #1F3859;
  --teal: #4A9B9B;
  --teal-light: #6BB8B8;
  --silver: #C0C0C0;
  --cream: #F5F1E8;
  --cream-dark: #E8E0D0;
  --black: #1A1A1A;
  --white: #FFFFFF;

  /* Legacy color mappings for compatibility */
  --color-primary: #2B4D7D;           /* Navy - Main text, navigation */
  --color-secondary: #8D99AE;         /* Cool Grey - Secondary text, borders, dividers */
  --color-background: #F5F1E8;        /* Cream - Main page background */
  --color-action: #436098;            /* Professional Blue - Buttons, CTAs */
  --color-accent: #D74444;            /* Red - Key CTAs, important highlights */
  --color-security-red: #D74444;      /* Mapped to Red */
  --color-deep-blue: #2B4D7D;         /* Mapped to Navy */
  --color-spotlight-cyan: #4A9B9B;    /* Mapped to Teal */
  --color-light-cyan: #6BB8B8;        /* Mapped to Teal Light */
  --color-olive-green: #7FA560;       /* Keep for compatibility */
  --color-charcoal: #1F3859;          /* Mapped to Navy Dark */
  --color-light-gray: #F5F5F5;        /* Keep for UI elements */
  --color-white: #FFFFFF;

  /* Typography - Art Deco */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'PT Serif', serif;
  --font-ui: 'Bebas Neue', cursive;
  --font-family: 'PT Serif', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  /* Spacing (8px base) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

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

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Mobile overrides */
@media (max-width: 899px) {
  :root {
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.375rem;
  }
}

/* ===================================
   Global Resets & Base Styles
   =================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

h1 {
  font-size: var(--font-size-h1);
  font-family: var(--font-heading);
}

h2 {
  font-size: var(--font-size-h2);
  font-family: var(--font-heading);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-heading);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  color: var(--color-charcoal);
  font-family: var(--font-heading);
}

p {
  margin-bottom: var(--space-md);
  max-width: 70ch;
}

ul, ol {
  margin-bottom: var(--space-lg);
  margin-left: var(--space-xl);
  max-width: 70ch;
}

ul li, ol li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

a {
  color: var(--color-spotlight-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-deep-blue);
  text-decoration: underline;
}

/* ===================================
   Layout Components
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

@media (min-width: 600px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.hero .container {
  padding: 0 2rem;
}

.section {
  padding: 5rem 2rem;
}

.section.hero {
  padding: 5rem 2rem;
  min-height: 650px;
}

/* ===================================
   Navigation
   =================================== */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 60px;
}

.site-nav {
  display: none;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
  }
}

.site-nav a {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-security-red);
}

/* Mobile menu toggle */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
  position: relative;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile menu styles */
.site-nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  gap: var(--space-md);
}

.site-nav.active a {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

/* ===================================
   Buttons - Art Deco Style
   =================================== */
.btn {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  padding: 1.125rem 2.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow:
    0 4px 0 var(--red-dark),
    0 8px 20px rgba(215, 68, 68, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 7px 0 var(--red-dark),
    0 12px 25px rgba(215, 68, 68, 0.4);
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 3px solid var(--teal);
  box-shadow: 0 4px 15px rgba(74, 155, 155, 0.2);
  padding: 1.0rem 2.5rem;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(74, 155, 155, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}


.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.btn-accent:hover {
  background: #B91928;
  box-shadow: 0 4px 12px rgba(206, 31, 44, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===================================
   Cards - Art Deco Style
   =================================== */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px var(--teal),
    0 15px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 2px var(--teal),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.card-content {
  padding: 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.card-meta {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.card-description {
  margin-bottom: var(--space-md);
}

/* Episode Card specific */
.episode-card .category-tag,
.category-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--teal);
  padding: 0.375rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* ===================================
   Forms
   =================================== */
.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-size-body);
  font-family: var(--font-family);
  border: 1px solid #D0D0D0;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 2px solid var(--color-spotlight-cyan);
  box-shadow: 0 0 0 3px rgba(59, 160, 212, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-lg) 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

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

.footer-section ul li {
  margin-bottom: var(--space-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-md);
  text-align: center;
  font-size: var(--font-size-small);
}

.footer-bottom p {
  margin: 0.5rem auto;
  text-align: center;
}

/* ===================================
   Grid Layouts
   =================================== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

/* ===================================
   Accessibility
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus indicators */
*:focus-visible {
  outline: 2px solid var(--color-spotlight-cyan);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-spotlight-cyan);
  outline-offset: 2px;
}

/* ===================================
   ART DECO HERO SECTION
   =================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  padding: 5rem 2rem;
  min-height: 650px;
  overflow: hidden;
}

.art-deco-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(192, 192, 192, 0.3) 49px, rgba(192, 192, 192, 0.3) 50px),
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(192, 192, 192, 0.3) 49px, rgba(192, 192, 192, 0.3) 50px),
    linear-gradient(135deg, transparent 48%, rgba(215, 68, 68, 0.15) 48%, rgba(215, 68, 68, 0.15) 52%, transparent 52%);
  background-size: 50px 50px, 50px 50px, 100px 100px;
}

.corner-ornament {
  position: absolute;
  z-index: 1;
}

.corner-tl {
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
}

.corner-tl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
  box-shadow: 0 0 10px rgba(215, 68, 68, 0.4);
}

.corner-tl::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, var(--red) 0%, var(--teal) 100%);
  box-shadow: 0 0 10px rgba(215, 68, 68, 0.4);
}

.corner-br {
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
}

.corner-br::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(270deg, var(--red) 0%, var(--teal) 100%);
  box-shadow: 0 0 10px rgba(215, 68, 68, 0.4);
}

.corner-br::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 80px;
  background: linear-gradient(0deg, var(--red) 0%, var(--teal) 100%);
  box-shadow: 0 0 10px rgba(215, 68, 68, 0.4);
}

.hero .hero-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 5rem !important;
  align-items: center !important;
}

.hero .hero-grid > * {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

@media (max-width: 968px) {
  .hero .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
}

.hero-content {
  animation: slideInLeft 1s ease-out;
  max-width: none !important;
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
}

.hero .hero-title,
.hero .hero-tagline,
.hero .cta-container,
.hero .platform-links {
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  display: block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 20px rgba(215, 68, 68, 0.6),
    0 2px 20px rgba(0, 0, 0, 0.3);
}

.divider {
  position: relative;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--silver) 100%);
  margin: 2rem 0 2.5rem 0;
}

.hero .divider {
  width: 100% !important;
  max-width: 300px !important;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border: 2px solid var(--navy-dark);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(74, 155, 155, 0.4);
}

.divider::before {
  left: -6px;
}

.divider::after {
  right: -6px;
}

.divider-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--red);
  border: 1px solid var(--teal);
  box-shadow: 0 0 8px rgba(215, 68, 68, 0.5);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: none;
}

.cta-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
}

.platform-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: baseline;
}

.platform-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  text-transform: uppercase;
  line-height: 1.5;
}

.platform-link {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  font-family: var(--font-body);
  line-height: 1.5;
}

.platform-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-light);
  transition: width 0.3s ease;
}

.platform-link:hover {
  color: var(--teal-light);
  text-decoration: none;
}

.platform-link:hover::after {
  width: 100%;
}

.episode-wrapper {
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.latest-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--teal-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.latest-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-light) 0%, transparent 100%);
}

.episode-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 70px;
  height: 70px;
  background: var(--red);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  color: var(--white);
  z-index: 3;
  box-shadow:
    0 0 0 2px var(--teal),
    0 6px 15px rgba(0, 0, 0, 0.4);
}

.episode-number {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: bold;
}

.episode-label {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.view-all-link {
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.view-all-link:hover {
  color: var(--red);
  text-decoration: none;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Episode Card Link Wrapper */
.episode-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.episode-card-link:hover {
  text-decoration: none;
}

.episode-card-small {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.episode-card-link:hover .episode-card-small {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--teal);
}

.episode-card-small .episode-image {
  width: 100%;
  height: auto;
  display: block;
}

.episode-card-small .episode-content {
  padding: 1.5rem;
}

.episode-card-small .episode-title {
  font-size: 1.125rem;
}

.blog-section {
  background: var(--cream-dark);
}

/* Old blog card styles - kept for reference but hover moved to .blog-card-link wrapper */

.blog-category {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--red);
  padding: 0.375rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-meta {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 1.25rem;
}

.blog-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section .art-deco-pattern {
  opacity: 0.05;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-content h2 span {
  color: var(--red);
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.hosts-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--teal);
}

.hosts-info h3 {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hosts-info p {
  font-size: 1rem;
  color: var(--cream-dark);
}

.newsletter-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.newsletter-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--cream);
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}

input.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1.125rem 1.5rem;
  border: 3px solid var(--white);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

input.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--teal-light);
}

.newsletter-btn {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}

.newsletter-btn:hover {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 968px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .episode-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
    min-height: 500px;
  }

  .corner-ornament {
    display: none;
  }

  .cta-container {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  input.newsletter-input {
    min-width: 100%;
  }
}

/* ===================================
   HERO SECTION - FINAL OVERRIDES
   Clean CSS from working mockup
   These rules have maximum specificity to override all legacy styles
   =================================== */

/* Hero container */
.hero.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  padding: 5rem 2rem;
  min-height: 650px;
  overflow: hidden;
}

/* Grid layout */
.hero .hero-grid.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Hero content area */
.hero .hero-content.hero-content {
  animation: slideInLeft 1s ease-out;
}

/* Title */
.hero .hero-title.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero .hero-title .highlight {
  display: block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 20px rgba(215, 68, 68, 0.6),
    0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Divider */
.hero .divider.divider {
  position: relative;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--silver) 100%);
  margin: 2rem 0 2.5rem 0;
}

/* Tagline */
.hero .hero-tagline.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* CTA container */
.hero .cta-container.cta-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
}

/* Buttons in hero */
.hero .btn.btn {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  padding: 1.125rem 2.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero .btn-primary.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow:
    0 4px 0 var(--red-dark),
    0 8px 20px rgba(215, 68, 68, 0.3);
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 7px 0 var(--red-dark),
    0 12px 25px rgba(215, 68, 68, 0.4);
}

.hero .btn-secondary.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 3px solid var(--teal);
  box-shadow: 0 4px 15px rgba(74, 155, 155, 0.2);
}

.hero .btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(74, 155, 155, 0.4);
  transform: translateY(-2px);
}

/* Platform links */
.hero .platform-links.platform-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: baseline;
}

.hero .platform-label.platform-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  text-transform: uppercase;
  line-height: 1.5;
}

.hero .platform-link.platform-link {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  font-family: var(--font-body);
  line-height: 1.5;
}

.hero .platform-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-light);
  transition: width 0.3s ease;
}

.hero .platform-link:hover {
  color: var(--teal-light);
}

.hero .platform-link:hover::after {
  width: 100%;
}

/* Episode wrapper */
.hero .episode-wrapper {
  animation: slideInRight 1s ease-out;
}

/* Responsive */
@media (max-width: 968px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===================================
   HERO EPISODE CARD FIX
   Constrain episode card image to prevent overflow
   =================================== */
.hero .episode-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hero .episode-card {
  background: var(--white);
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero .episode-card-link:hover .episode-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--teal);
}

.hero .episode-card .episode-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.hero .episode-card .episode-content {
  padding: 1.5rem;
}

.hero .latest-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-light);
  margin-bottom: 1rem;
  display: block;
}

.hero .episode-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 10;
}

/* Episode wrapper styling */
.hero .episode-wrapper {
  width: 100%;
  overflow: visible;
}

/* ===================================
   EPISODES PAGE STYLES
   =================================== */

/* Episodes Hero - Compact */
.episodes-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 2rem 2rem 1.5rem;
  overflow: hidden;
}

.corner-accent {
  position: absolute;
  z-index: 1;
}

.corner-accent-tl {
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
}

.corner-accent-tr {
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
}

.episodes-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.episodes-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.episodes-hero .hero-title span {
  color: var(--red);
}

.episodes-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--cream-dark);
  text-transform: uppercase;
}

/* Controls Section */
.controls-section {
  padding: 1.25rem 2rem;
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
}

.controls-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.search-container {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-light);
  width: 1rem;
  height: 1rem;
}

.search-input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.75rem;
  border: 2px solid var(--navy-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  background: var(--cream);
}

.search-input:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.select-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.custom-select {
  padding: 0.625rem 2.25rem 0.625rem 1rem;
  border: 2px solid var(--navy-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--cream);
  color: var(--navy-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232B4D7D' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.custom-select:hover {
  border-color: var(--teal);
}

.custom-select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

/* Episodes Grid */
.episodes-section {
  padding: 4rem 2rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Episode Card */
.episode-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Episode card hover moved to .episode-card-link wrapper */
.episode-card-link:hover .episode-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--teal);
}

/* Episode Image - 16:9 Aspect Ratio */
.episode-image-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.episode-image-container .episode-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Episode Content */
.episode-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.episode-category {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--teal);
  padding: 0.375rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  width: fit-content;
}

.episode-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.episode-meta {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.episode-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Episode Footer */
.episode-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.episode-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  background: var(--navy-light);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.platform-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.listen-btn {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  color: var(--red);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid var(--red);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.listen-btn:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(215, 68, 68, 0.3);
}

.listen-btn::after {
  content: '→';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.listen-btn:hover::after {
  transform: translateX(5px);
}

/* Episode CTA (for card links) */
.episode-cta {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  color: var(--red);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid var(--red);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.episode-card-link:hover .episode-cta {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(215, 68, 68, 0.3);
}

.episode-cta::after {
  content: '→';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.episode-card-link:hover .episode-cta::after {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .episodes-grid {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  }
}

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

  .controls-grid {
    grid-template-columns: 1fr;
  }

  .select-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .episodes-hero {
    padding: 1.5rem 1.5rem 1rem;
  }

  .episodes-section {
    padding: 3rem 1.5rem;
  }

  .stats-bar {
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .corner-accent {
    display: none;
  }

  .controls-section {
    padding: 1rem;
  }

  .episode-platforms {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* About Hero - Compact */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
}

.about-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-title span {
  color: var(--red);
}

.about-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
}

/* Our Story Section */
.story-section {
  padding: 5rem 2rem;
  background: var(--white);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.story-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hosts Section */
.hosts-section {
  padding: 5rem 2rem;
  background: var(--cream-dark);
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3rem;
}

.host-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.host-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--teal);
}

.host-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.host-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.host-content {
  padding: 2rem;
}

.host-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.host-role {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.host-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1rem;
}

.host-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy-light);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 1rem;
}

.host-linkedin:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 155, 155, 0.3);
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-radius: 8px;
  border: 2px solid var(--cream-dark);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow:
    0 0 0 3px var(--white),
    0 0 0 5px var(--teal),
    0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: var(--teal);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
}

/* Stats Section (About Page) */
.stats-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--cream);
}

/* Newsletter Section Updates for About Page */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  font-size: 1.125rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.newsletter-button {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.newsletter-button:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-privacy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

/* Responsive - About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 2rem 1.5rem 1.5rem;
  }

  .story-section,
  .hosts-section,
  .benefits-section {
    padding: 3rem 1.5rem;
  }

  .stats-section {
    padding: 3rem 1.5rem;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ===========================
   BLOG PAGE STYLES
   =========================== */

/* Blog Hero - Compact */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 2rem 2rem 1.5rem;
  overflow: hidden;
}

.blog-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.blog-hero .hero-title span {
  color: var(--red);
}

.blog-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--cream);
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Controls Grid */
.controls-grid-blog {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
}

/* Blog Section */
.blog-section {
  padding: 4rem 2rem;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 2rem;
}

/* Blog Card Link Wrapper */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card-link:hover {
  text-decoration: none;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.blog-card-link:hover .blog-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--teal);
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red) 0%, var(--teal) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card-link:hover .blog-card::before {
  opacity: 1;
}

.blog-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--red);
  padding: 0.375rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  width: fit-content;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.blog-meta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.blog-tag {
  font-size: 0.75rem;
  color: var(--teal);
  background: rgba(74, 155, 155, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.blog-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.read-more-btn {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--red);
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border: 2px solid var(--red);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(215, 68, 68, 0.3);
}

.read-more-btn::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
  transform: translateX(5px);
}

/* Newsletter Card (Sidebar) */
.newsletter-card {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  border-radius: 8px;
  padding: 2rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input-blog {
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.newsletter-input-blog::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-blog:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive - Blog Page */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  }
}

@media (max-width: 968px) {
  .controls-grid-blog {
    grid-template-columns: 1fr;
  }

  .select-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 1.5rem 1.5rem 1rem;
  }

  .blog-section {
    padding: 3rem 1.5rem;
  }

  .controls-section {
    padding: 1.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

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

/* Contact Hero */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
}

.contact-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-title span {
  color: var(--red);
}

.contact-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream);
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Form Section */
.form-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.form-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--navy-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--black);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232B4D7D' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-note {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 1rem;
}

.submit-button {
  width: 100%;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.submit-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(215, 68, 68, 0.3);
}

.submit-button:disabled {
  background: var(--silver);
  cursor: not-allowed;
  transform: none;
}

/* Status Messages */
.status-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.status-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Info Section */
.info-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.info-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.info-card {
  background: var(--cream-dark);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--teal);
  background: var(--cream);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.guest-info {
  background: var(--cream-dark);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.guest-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.guest-info p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1rem;
}

.guest-info ul {
  margin-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--black);
}

.guest-info li {
  margin-bottom: 0.5rem;
}

/* Responsive - Contact Page */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 2rem 1.5rem 1.5rem;
  }

  .contact-section {
    padding: 3rem 1.5rem;
  }
}

/* ============================================================
   PARTNERSHIP PAGE STYLES
   ============================================================ */

/* Partnership Hero - Compact */
.partnership-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
}

.partnership-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.partnership-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.partnership-hero .hero-title span {
  color: var(--red);
}

.partnership-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
}

/* About & Audience Section */
.about-section {
  padding: 4rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

.about-box {
  background: var(--cream-dark);
  padding: 2.5rem;
  border-radius: 0;
  border-left: 6px solid var(--teal);
  box-shadow: 8px 8px 0 rgba(43, 77, 125, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-box:hover {
  box-shadow: 12px 12px 0 rgba(43, 77, 125, 0.15);
  transform: translateX(4px);
}

.about-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.about-box h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.about-box p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--black);
}

.about-box p:last-child {
  margin-bottom: 0;
}

.audience-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.audience-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(43, 77, 125, 0.1);
  color: var(--black);
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: bold;
}

.audience-note {
  font-style: italic;
  color: var(--red);
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
}

/* Partnership Levels Section */
.partnership-levels {
  padding: 5rem 2rem;
  background: var(--cream);
  position: relative;
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 3rem;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.tier-card {
  background: var(--white);
  border: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 var(--navy);
}

.tier-header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 4px solid var(--red);
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tier-card.featured .tier-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-bottom: 4px solid var(--teal);
}

.tier-card.premium .tier-header {
  background: var(--red);
  border-bottom: 4px solid var(--navy);
}

.tier-name {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.tier-price-note {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.tier-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tier-benefits {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  padding: 0;
}

.tier-benefits li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 2px solid var(--cream);
}

.tier-benefits li:last-child {
  border-bottom: none;
}

.tier-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
  font-size: 1.5rem;
}

.tier-button {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy);
  padding: 1rem 2rem;
  border: none;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.tier-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--red);
  transition: left 0.3s ease;
  z-index: 0;
}

.tier-button span {
  position: relative;
  z-index: 1;
}

.tier-button:hover::before {
  left: 0;
}

.tier-card.premium .tier-button {
  background: var(--red);
}

.tier-card.premium .tier-button::before {
  background: var(--navy);
}

.custom-note {
  text-align: center;
  font-size: 1.125rem;
  color: var(--black);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 3rem;
  background: var(--white);
  border: 3px dashed var(--teal);
  position: relative;
  line-height: 1.8;
}

/* Why Partner Section */
.why-partner {
  padding: 5rem 2rem;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.benefit-card {
  background: var(--cream-dark);
  padding: 2.5rem;
  border-left: 6px solid var(--navy);
  box-shadow: 6px 6px 0 rgba(215, 68, 68, 0.15);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 10px 10px 0 rgba(215, 68, 68, 0.25);
  border-left-color: var(--red);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.benefit-description {
  line-height: 1.8;
  color: var(--black);
}

/* Metrics Section */
.metrics-section {
  padding: 5rem 2rem;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.metrics-section .art-deco-pattern {
  opacity: 0.05;
}

.metrics-section .section-title {
  color: var(--cream);
  margin-bottom: 1rem;
}

.metrics-section .section-title::after {
  background: linear-gradient(90deg, var(--red) 0%, var(--teal) 100%);
}

.metrics-section .section-subtitle {
  color: var(--cream);
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 3rem auto 2rem;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: rgba(245, 241, 232, 0.1);
  border: 3px solid var(--teal);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border: 3px solid var(--red);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-number {
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.metric-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metrics-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .art-deco-pattern {
  opacity: 0.08;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-button {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--cream);
  padding: 1.25rem 3rem;
  border: 4px solid var(--cream);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transition: left 0.3s ease;
  z-index: 0;
}

.cta-button span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover span {
  color: var(--cream);
}

/* Responsive Styles */
@media (max-width: 968px) {
  .about-grid,
  .tiers-grid,
  .benefits-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .partnership-hero {
    padding: 2rem 1.5rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--navy);
  }

  .benefit-card:hover {
    transform: translateX(4px);
    box-shadow: 8px 8px 0 rgba(215, 68, 68, 0.25);
  }
}

@media (max-width: 768px) {
  .partnership-levels,
  .why-partner,
  .metrics-section,
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-box {
    padding: 2rem;
  }

  .tier-body {
    padding: 1.5rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .metric-card {
    padding: 2rem;
  }

  .metric-number {
    font-size: 3rem;
  }
}


/* ============================================================
   NEWSLETTER PAGE STYLES
   ============================================================ */

/* Newsletter Hero - Compact */
.newsletter-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
}

.newsletter-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-hero .hero-title span {
  color: var(--red);
  display: inline-block;
}

.newsletter-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits-section-newsletter {
  padding: 2rem 2rem;
  background: var(--white);
}

.benefits-content-newsletter {
  max-width: 700px;
  margin: 0 auto;
}

.benefits-list-newsletter {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list-newsletter li {
  font-size: 1.125rem;
  line-height: 1.6;
  padding: 0.25rem 0;
  color: var(--black);
}

.benefits-list-newsletter li strong {
  color: var(--navy);
  font-weight: 600;
}

/* Signup Section */
.signup-section-newsletter {
  padding: 3rem 2rem;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.signup-section-newsletter .art-deco-pattern {
  opacity: 0.05;
}

.signup-content-newsletter {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.signup-form-container-newsletter {
  background: var(--cream-dark);
  padding: 2rem;
  border: 4px solid var(--teal);
  position: relative;
}

.signup-form-container-newsletter::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 4px solid var(--red);
  pointer-events: none;
}

.form-group-newsletter {
  margin-bottom: 1rem;
}

.form-label-newsletter {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.form-input-newsletter {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 3px solid var(--navy);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.form-input-newsletter:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 68, 68, 0.1);
}

.submit-button-newsletter {
  width: 100%;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 1.25rem 2rem;
  border: 4px solid var(--red);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.submit-button-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transition: left 0.3s ease;
  z-index: 0;
}

.submit-button-newsletter span {
  position: relative;
  z-index: 1;
}

.submit-button-newsletter:hover::before {
  left: 0;
}

.submit-button-newsletter:hover {
  border-color: var(--navy);
}

.privacy-note-newsletter {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.7;
  margin: 1rem auto 0 auto;
  font-style: italic;
}

/* Stats Section */
.stats-section-newsletter {
  padding: 4rem 2rem;
  background: var(--white);
  border-top: 3px solid var(--cream-dark);
}

.stats-content-newsletter {
  max-width: 900px;
  margin: 0 auto;
}

.stats-intro-newsletter {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-intro-newsletter p {
  font-size: 1.125rem;
  color: var(--black);
  opacity: 0.7;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-intro-newsletter a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--red);
  transition: all 0.2s ease;
}

.stats-intro-newsletter a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.stats-grid-newsletter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.stat-item-newsletter {
  text-align: center;
  padding: 2rem;
  background: var(--cream-dark);
  border: 3px solid var(--teal);
  transition: all 0.3s ease;
  position: relative;
}

.stat-item-newsletter::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border: 3px solid var(--red);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item-newsletter:hover::before {
  opacity: 1;
}

.stat-number-newsletter {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.stat-label-newsletter {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
  .stats-grid-newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter-hero {
    padding: 2rem 1.5rem 1.5rem;
  }

  .signup-form-container-newsletter {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .benefits-section-newsletter {
    padding: 1.5rem 1.5rem;
  }

  .signup-section-newsletter {
    padding: 2rem 1.5rem;
  }

  .stats-section-newsletter {
    padding: 3rem 1.5rem;
  }

  .stat-item-newsletter {
    padding: 1.5rem;
  }

  .stat-number-newsletter {
    font-size: 2.5rem;
  }
}

/* =============================================
   Resources Page Styles
   ============================================= */

/* Resources Hero */
.resources-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 3rem 2rem;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
}

.resources-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.resources-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.resources-hero .hero-title span {
  color: var(--red);
}

.resources-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Resources Newsletter Signup Section */
.resources-newsletter-signup {
  position: relative;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 4rem 2rem;
  overflow: hidden;
  margin-top: 3rem;
}

.newsletter-signup-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsletter-signup-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.newsletter-signup-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--cream);
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-signup-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.newsletter-signup-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.25rem;
  border: 3px solid var(--cream-dark);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-signup-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74, 155, 155, 0.2);
}

.newsletter-signup-button {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--white);
  padding: 1rem 2.5rem;
  border: 3px solid var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.newsletter-signup-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transition: left 0.3s ease;
  z-index: 0;
}

.newsletter-signup-button span {
  position: relative;
  z-index: 1;
}

.newsletter-signup-button:hover::before {
  left: 0;
}

.newsletter-signup-button:hover {
  border-color: var(--navy);
  color: var(--white);
}

.newsletter-signup-privacy {
  text-align: center;
  font-size: 0.875rem;
  color: var(--white);
  opacity: 0.8;
  font-style: italic;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .resources-hero {
    padding: 2rem 1.5rem;
  }

  .resources-newsletter-signup {
    padding: 3rem 1.5rem;
  }

  .newsletter-signup-form {
    flex-direction: column;
  }

  .newsletter-signup-input {
    min-width: 100%;
  }

  .newsletter-signup-button {
    width: 100%;
  }
}

