/*
Theme Name: The Success Farm
Theme URI: https://thesuccessfarm.com
Author: Krystal Tomlinson
Author URI: https://thesuccessfarm.com
Description: A premium personal brand theme for The Success Farm - Krystal Tomlinson's coaching, speaking, and self-management platform.
Version: 3.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thesuccessfarm
Tags: one-column, custom-menu, featured-images, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --color-background: #faf8f5;
  --color-foreground: #2a1f1a;
  --color-primary: #b84c2e;
  --color-primary-foreground: #faf8f5;
  --color-secondary: #efe8dc;
  --color-secondary-foreground: #2a1f1a;
  --color-muted: #f3efe9;
  --color-muted-foreground: #6b5c50;
  --color-accent: #2a9d8f;
  --color-accent-foreground: #faf8f5;
  --color-border: #ddd5c9;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Cormorant Garamond', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Premium Utilities */
.hero--immersive {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
}

.text-balance {
  text-wrap: balance;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.object-top {
  object-position: top center;
}


a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  word-wrap: break-word;
  /* Prevent overflow on mobile */
}

.section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-primary);
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
}

/* Responsive Headings */
.section-heading--xl {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.section-heading--lg {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading--md {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

@media (max-width: 767px) {
  .section-heading--xl {
    font-size: 2.5rem;
    /* Cap size on mobile */
  }

  .section-heading--lg {
    font-size: 2rem;
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

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

.container--narrow {
  max-width: 64rem;
}

.container--tight {
  max-width: 48rem;
}

.section-padding {
  padding-top: 4rem;
  /* Reduced for mobile */
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  /* Reduced gap for mobile */
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* Image Utilities */
.img-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

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

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-portrait {
  aspect-ratio: 3 / 4;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* Mobile Ordering */
@media (max-width: 767px) {
  .order-1-mobile {
    order: 1;
  }

  .order-2-mobile {
    order: 2;
  }
}

.items-center {
  align-items: center;
}

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

/* Spacing Utilities */
.pt-0 {
  padding-top: 0 !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

@media (min-width: 768px) {
  .md\:pt-0 {
    padding-top: 0 !important;
  }

  .md\:pt-4 {
    padding-top: 1rem !important;
  }

  .md\:pt-8 {
    padding-top: 2rem !important;
  }

  .md\:pt-12 {
    padding-top: 3rem !important;
  }

  .md\:pt-16 {
    padding-top: 4rem !important;
  }

  .md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .md\:pb-4 {
    padding-bottom: 1rem !important;
  }

  .md\:pb-8 {
    padding-bottom: 2rem !important;
  }

  .md\:pb-12 {
    padding-bottom: 3rem !important;
  }

  .md\:pb-16 {
    padding-bottom: 4rem !important;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-foreground);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.5);
}

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

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  /* Adjusted for mobile touch targets */
  border: none;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  min-height: 3.5rem;
  /* width: 100%; Optional: make buttons full width on very small screens? leaving as inline-flex for now */
}

@media (min-width: 640px) {
  .btn {
    padding: 1rem 2.5rem;
    /* width: auto; */
  }
}

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

.btn--primary:hover {
  opacity: 0.9;
}

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

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

.btn--outline-light {
  background-color: transparent;
  border: 1px solid rgba(250, 248, 245, 0.3);
  color: var(--color-background);
}

.btn--outline-light:hover {
  background-color: rgba(250, 248, 245, 0.1);
}

.btn svg,
.btn .arrow {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle separation */
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  /* slightly shorter on mobile? keep standard 5rem or reduce? 5rem is fine. */
}

@media (min-width: 768px) {
  .site-nav__inner {
    height: 5rem;
  }
}

.site-nav__brand {
  font-size: 1.125rem;
  /* slightly smaller on mobile */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .site-nav__brand {
    font-size: 1.25rem;
  }
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__links a {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav__links a:hover {
  color: var(--color-primary);
}

.site-nav__toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--color-foreground);
  cursor: pointer;
  /* Ensure pointer on touch/mouse */
}

@media (min-width: 1024px) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__toggle svg {
  width: 1.5rem;
  /* Larger icon for touch */
  height: 1.5rem;
}

.site-nav__mobile {
  display: none;
  /* Hidden by default */
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  padding: 0;
  /* Removing padding to let links fill space */
  text-align: center;
  position: absolute;
  /* Take out of flow */
  left: 0;
  right: 0;
  top: 100%;
  /* Below header */
  height: calc(100vh - 4rem);
  /* Full height minus header */
  overflow-y: auto;
  flex-direction: column;
  justify-content: center;
  /* Center links vertically */
  z-index: 49;
}

@media (min-width: 768px) {
  .site-nav__mobile {
    height: calc(100vh - 5rem);
  }
}

.site-nav__mobile.is-open {
  display: flex;
  /* Show as flexbox when open */
}

@media (min-width: 1024px) {
  .site-nav__mobile {
    display: none !important;
  }
}

.site-nav__mobile a {
  display: block;
  padding: 1.5rem 0;
  /* Larger touch targets */
  font-size: 1.25rem;
  /* Larger font for mobile menu */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.site-nav__mobile a:hover {
  color: var(--color-primary);
  background-color: rgba(0, 0, 0, 0.02);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  /* Slightly reduced for mobile */
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 90vh;
  }
}

.hero--medium {
  min-height: auto;
  padding: 6rem 0 6rem;
  /* Standard mobile padding */
}

@media (min-width: 768px) {
  .hero--medium {
    padding: 10rem 0 10rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--gradient {
  background: linear-gradient(to right, rgba(42, 31, 26, 0.8), rgba(42, 31, 26, 0.6), rgba(42, 31, 26, 0.3));
}

.hero__overlay--dark {
  background-color: rgba(42, 31, 26, 0.7);
}

.hero__content {
  position: relative;
  z-index: 1;
}

/* Premium Utilities (Hero) */
.hero--immersive {
  min-height: 70vh;
  /* Mobile height */
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero--immersive {
    min-height: 85vh;
    padding-bottom: 6rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background-color: rgba(239, 232, 220, 0.3);
  padding: 3rem 0;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.site-footer__links a {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: var(--color-primary);
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__bottom a {
  transition: color 0.3s ease;
}

.site-footer__bottom a:hover {
  color: var(--color-primary);
}

/* ============================================
   WELCOME POPUP
   ============================================ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-overlay.is-visible {
  display: flex;
}

.popup-overlay__bg {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 31, 26, 0.6);
  backdrop-filter: blur(4px);
}

.popup-modal {
  position: relative;
  background-color: var(--color-background);
  max-width: 28rem;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  z-index: 1;
}

.popup-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-muted-foreground);
  transition: color 0.3s ease;
}

.popup-modal__close:hover {
  color: var(--color-foreground);
}

/* ============================================
   CHECKLIST ITEMS
   ============================================ */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-item__icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-item span {
  font-weight: 300;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bullet-item__dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ============================================
   STAR RATINGS
   ============================================ */
.stars {
  display: inline-flex;
  gap: 0.125rem;
}

.stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================
   COLOR UTILITIES
   ============================================ */
.bg-background {
  background-color: var(--color-background);
}

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

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

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

.bg-secondary-50 {
  background-color: rgba(239, 232, 220, 0.5);
}

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

.text-background {
  color: var(--color-background);
}

.text-foreground {
  color: var(--color-foreground);
}

.text-primary {
  color: var(--color-primary);
}

.text-muted {
  color: var(--color-muted-foreground);
}

.text-white {
  color: #ffffff;
}

/* ============================================
   SPACING & UTILITY
   ============================================ */
.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

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

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

.mb-12 {
  margin-bottom: 3rem;
}

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

.pt-20 {
  padding-top: 5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-5>*+* {
  margin-top: 1.25rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.uppercase {
  text-transform: uppercase;
}

.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;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 31, 26, 0.9);
  backdrop-filter: blur(8px);
}

.video-modal-container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 64rem;
  background-color: #000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-modal-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-modal-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
}

.video-modal-close:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .video-modal-close {
    top: -1rem;
    right: -3.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}


/* ============================================
   SERVICE CARDS (Refactored)
   ============================================ */
.service-card {
  display: block;
  position: relative;
  height: 100%;
}

.service-card__image {
  position: relative;
  width: 100%;
  /* Force 3:4 Aspect Ratio */
  aspect-ratio: 3 / 4 !important;
  padding-bottom: 0 !important;
  /* Clear any legacy padding hacks */
  overflow: hidden;
  border-radius: 4px;
  background-color: #f0f0f0;
  /* Placeholder color */
}

/* Fallback for browsers not supporting aspect-ratio */
@supports not (aspect-ratio: 3/4) {
  .service-card__image {
    padding-bottom: 133.33%;
    /* 4/3 ratio */
    height: 0;
  }
}

.service-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
  /* Focus on faces/top of image */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 31, 26, 0.95), rgba(42, 31, 26, 0.4) 50%, rgba(42, 31, 26, 0));
  z-index: 1;
  pointer-events: none;
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   SOCIAL BANNER
   ============================================ */
.social-banner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .social-banner {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
    /* Often intrusive on mobile bottom, user can decide. Let's hide on mobile for now as requested 'banner' usually implies desktop side or top. But wait, user said 'search hard to find', so maybe mobile is key. Let's make it visible but unobtrusive. */
    display: flex;
  }
}

.social-banner__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--color-foreground);
  transition: all 0.3s ease;
  position: relative;
}

.social-banner__link:hover {
  background-color: var(--color-primary);
  color: white;
  width: 4rem;
  /* Slide out effect on desktop */
}

@media (max-width: 767px) {
  .social-banner__link {
    width: 100%;
    height: 3.5rem;
  }

  .social-banner__link:hover {
    width: 100%;
    /* No slide on mobile */
  }
}

.social-banner__link svg {
  width: 1.25rem;
  height: 1.25rem;
}


/* ============================================
   FIXED SOCIAL BANNER
   ============================================ */
.social-side-banner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  flex-direction: column;
}

.social-side-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--color-foreground);
  transition: all 0.3s ease;
}

.social-side-banner a:hover {
  background-color: var(--color-primary);
  color: #fff;
  width: 4.5rem;
  /* Slide out effect */
}

/* Mobile: Move to bottom */
@media (max-width: 767px) {
  .social-side-banner {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    border-radius: 0;
    justify-content: space-around;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .social-side-banner a {
    flex: 1;
    width: auto;
    height: 3.5rem;
  }

  .social-side-banner a:hover {
    width: auto;
  }
}

/* ============================================
   EVENT & PODCAST CARDS (Refactored)
   ============================================ */
/* Events */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background-color: var(--color-background);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

@media (min-width: 768px) {
  .event-card {
    grid-template-columns: 1fr 2fr;
  }
}

.event-card__img-wrapper {
  min-height: 20rem;
}

.event-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .event-card__content {
    padding: 3.5rem;
  }
}

.event-card__content--full {
  grid-column: 1 / -1;
}

.event-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.event-card__meta-icon {
  color: var(--color-primary);
}

.event-card__meta-text {
  font-size: 0.9375rem;
  color: var(--color-muted-foreground);
}

.event-card__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.event-card__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* Podcasts */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  gap: 2.5rem;
}

.podcast-card {
  background-color: var(--color-secondary-50);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.podcast-card__media {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.podcast-card__thumb {
  height: 14rem;
}

.podcast-card__content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.podcast-card__header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.podcast-card__badge {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 500;
}

.podcast-card__ep {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-foreground);
}

.podcast-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-foreground);
  line-height: 1.4;
}

.podcast-card__desc {
  font-size: 0.9375rem;
  flex: 1;
}

.podcast-card__link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 6rem 0;
}

.empty-state__icon {
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 2rem;
}

.empty-state__icon svg {
  width: 3rem;
  height: 3rem;
}

.empty-state__desc {
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

/* Hero Modifications */
.hero__content--wide {
  max-width: 72rem;
}

.hero__desc {
  color: rgba(250, 248, 245, 0.8);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto;
  font-weight: 300;
}