/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   ======================================== */
:root {
  --color-primary: #a51c30;
  --color-primary-dark: #8a1728;
  --color-primary-light: #c42339;
  --color-dark: #1a1a1a;
  --color-dark-bg: #2d2d2d;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-off-white: #f8f8f8;
  --color-border: #e0e0e0;

  --font-primary: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container-max: 1200px;
  --container-padding: 20px;

  --header-height: 80px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

/* Body text links must be distinguishable (WCAG 1.4.1) */
main p a,
main blockquote a,
main li a:not(.btn):not(.nav-donate-btn):not(.hero-card),
.staff-email {
  text-decoration: underline;
  text-underline-offset: 2px;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ========================================
   ACCESSIBILITY UTILITIES
   ======================================== */

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

/* Skip to Main Content */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* Focus Visible (WCAG 2.4.7 / 2.4.11) */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.site-footer :focus-visible,
.mega-menu-right :focus-visible,
.hero :focus-visible,
.stats-section :focus-visible,
.about-stats-section :focus-visible,
.about-howwedoit-section :focus-visible,
.about-cta-banner :focus-visible,
.rl-hero :focus-visible,
.rl-testimonial :focus-visible,
.rl-final-cta :focus-visible,
.ss-hero :focus-visible,
.bb-hero :focus-visible,
.vol-hero :focus-visible,
.rb-heading-bar :focus-visible,
.ct-heading-bar :focus-visible,
.page-hero :focus-visible,
.site-header:not(.scrolled) :focus-visible {
  outline-color: var(--color-white);
}

.site-header.scrolled :focus-visible {
  outline-color: var(--color-primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

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

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

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

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 30px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

/* Hamburger Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  z-index: 101;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-normal);
}

.site-header.scrolled .hamburger-line {
  background: var(--color-dark);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.header-nav a:hover {
  opacity: 0.8;
}

.site-header.scrolled .header-nav a {
  color: var(--color-dark);
}

/* Donate Button - pill shaped */
.nav-donate-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  background: none;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.nav-donate-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .nav-donate-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.site-header.scrolled .nav-donate-btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Logo - two versions: white (default) and dark (on scroll) */
.site-logo {
  height: 45px;
  width: auto;
}

.site-logo-dark {
  display: none;
}

.site-header.scrolled .site-logo-white {
  display: none;
}

.site-header.scrolled .site-logo-dark {
  display: block;
}

/* ========================================
   MEGA MENU
   ======================================== */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}

.mega-menu.active {
  transform: translateX(0);
}

.mega-menu-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: var(--color-white);
}

.mega-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu-close:hover {
  opacity: 0.7;
}

.mega-logo-dark {
  height: 40px;
  width: auto;
}

.mega-menu-content {
  display: flex;
  flex: 1;
  overflow-y: auto;
}

.mega-menu-left {
  flex: 1;
  background: var(--color-white);
  padding: 40px 50px;
}

.mega-menu-right {
  flex: 1;
  background: var(--color-primary);
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
}

.mega-section {
  margin-bottom: 35px;
}

.mega-heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.mega-heading a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.mega-heading a:hover {
  opacity: 0.7;
}

.mega-menu-right .mega-heading {
  color: var(--color-white);
}

.mega-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-section ul li a {
  font-size: 15px;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 2px 0;
}

.mega-section ul li a:hover {
  color: var(--color-primary);
}

.mega-menu-right .mega-section ul li a {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
}

.mega-menu-right .mega-section ul li a:hover {
  color: var(--color-white);
}

.mega-menu-donate {
  margin-top: 30px;
}

.mega-menu-donate .btn-outline-white {
  color: var(--color-white);
  border-color: var(--color-white);
  padding: 12px 30px;
}

.mega-menu-donate .btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.mega-menu-social {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.mega-menu-social a {
  color: var(--color-white);
  transition: opacity var(--transition-fast);
}

.mega-menu-social a:hover {
  opacity: 0.7;
}

.mega-menu-watermark {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 280px;
  height: 280px;
  opacity: 0.08;
  pointer-events: none;
}

.mega-menu-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* Hero Slides */
.hero-slides {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
  width: 100%;
  max-width: 900px;
}

.hero-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  padding: 0 20px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-slide .btn-primary {
  padding: 16px 40px;
  font-size: 15px;
}

.hero-scroll-indicators {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-scroll-indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background var(--transition-fast);
  cursor: pointer;
  border: none;
  padding: 0;
}

.hero-scroll-indicators .dot.active {
  background: var(--color-white);
}

/* Hero CTA Cards */
.hero-cards {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
}

.hero-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: block;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.hero-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-card:hover .hero-card-img img {
  transform: scale(1.08);
}

.hero-card-body {
  padding: 18px 20px;
  position: relative;
}

.hero-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.hero-card-body p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.4;
}

.hero-card-arrow {
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast);
}

.hero-card:hover .hero-card-arrow {
  background: var(--color-primary-dark);
}

/* ========================================
   BECOME A CORPORATE PARTNER SECTION
   ======================================== */
.corporate-section {
  padding: 100px 0;
  padding-top: 120px;
  background: var(--color-white);
}

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

.corporate-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.corporate-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
}

.corporate-text .btn {
  margin-top: 10px;
}

/* Video Thumbnail */
.video-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.video-thumbnail:hover img {
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  opacity: 0.9;
}

.video-thumbnail:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

/* ========================================
   VIDEO LIGHTBOX
   ======================================== */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.lightbox-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
   OUR STORY SECTION
   ======================================== */
/* Section Divider (wave between corporate & story) */
.section-divider {
  position: relative;
  background: var(--color-white);
  line-height: 0;
  margin-top: -1px;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

.divider-accent {
  will-change: transform;
}

.story-section {
  position: relative;
  padding: 100px 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: url('/images/2017/08/logo-512.png') no-repeat center center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

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

.story-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
}

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

.story-text strong {
  color: var(--color-dark);
  font-weight: 700;
}

.story-text .btn {
  margin-top: 10px;
}

.story-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.story-image:hover img {
  transform: scale(1.03);
}

/* ========================================
   STATS / IMPACT SECTION
   ======================================== */
.stats-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-heading {
  text-align: center;
  color: var(--color-white);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

/* Stat Icons */
.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 52px;
  height: 52px;
  color: var(--color-primary);
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.8s ease-out;
}

.stats-section.animated .stat-icon svg {
  stroke-dashoffset: 0;
}

.stat-item:nth-child(1) .stat-icon svg { transition-delay: 0s; }
.stat-item:nth-child(2) .stat-icon svg { transition-delay: 0.15s; }
.stat-item:nth-child(3) .stat-icon svg { transition-delay: 0.3s; }
.stat-item:nth-child(4) .stat-icon svg { transition-delay: 0.45s; }
.stat-item:nth-child(5) .stat-icon svg { transition-delay: 0.6s; }
.stat-item:nth-child(6) .stat-icon svg { transition-delay: 0.75s; }

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.4;
}

.stat-item::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 15px auto 0;
}

/* ========================================
   BOOK YOUR RETREAT SECTION
   ======================================== */
.retreat-section {
  padding: 100px 0;
  background: var(--color-white);
}

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

.retreat-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.retreat-text p {
  color: var(--color-text-light);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 15px;
}

/* Retreat Image Stack */
.retreat-img-stack {
  position: relative;
  height: 680px;
}

.retreat-img {
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
}

.retreat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.retreat-img:hover img {
  transform: scale(1.05);
}

.retreat-img-bottom {
  width: 65%;
  height: 75%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.retreat-img-top {
  width: 55%;
  height: 65%;
  top: 0;
  right: 0;
  z-index: 2;
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PAGE HERO (Inner pages)
   ======================================== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.page-hero-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.page-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 4px;
}

.page-hero-content p {
  font-size: 16px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* ========================================
   STAFF PAGE
   ======================================== */
.staff-heading-section {
  text-align: center;
  padding: 50px 0 10px;
  background: var(--color-white);
}

.staff-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.staff-subtitle {
  font-size: 15px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.staff-section {
  padding: 50px 0 80px;
  background: var(--color-white);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
}

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

.staff-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.staff-card:hover .staff-photo img {
  transform: scale(1.05);
}

.staff-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.staff-role {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  line-height: 1.4;
}

.staff-email {
  font-size: 13px;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.staff-email:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Center the last row (2 of 5 items) */
.staff-grid {
  justify-items: center;
}

.staff-grid .staff-card:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
  padding-right: 40px;
}

.staff-grid .staff-card:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: start;
  padding-left: 40px;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.newsletter-section .container {
  max-width: 700px;
  text-align: center;
}

.newsletter-text {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  border: 1px solid var(--color-border);
  border-right: none;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(165, 28, 48, 0.25);
}

.newsletter-input:focus {
  border-color: var(--color-primary);
}

.newsletter-btn {
  padding: 12px 28px;
  border-radius: 0;
  white-space: nowrap;
}

/* ========================================
   ABOUT PAGE — SHARED STYLES
   ======================================== */
.page-hero--tall {
  height: 55vh;
  min-height: 380px;
  max-height: 550px;
}

.about-section {
  padding: 90px 0;
}

.about-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.about-section-title--center {
  text-align: center;
}

.about-section-title--white {
  color: var(--color-white);
}

.about-title-decoration {
  text-align: center;
  margin-bottom: 30px;
}

.about-title-decoration span {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
}

.about-title-decoration--white span {
  background: rgba(255, 255, 255, 0.5);
}

/* Two-Column Layout */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-two-col--reverse {
  direction: rtl;
}

.about-two-col--reverse > * {
  direction: ltr;
}

.about-text p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

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

.about-text strong {
  color: var(--color-dark);
  font-weight: 700;
}

/* --- Shared image inner --- */
.about-image {
  position: relative;
}

.about-image__inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.about-image__inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image__inner:hover img {
  transform: scale(1.03);
}

/* --- Treatment 1: Offset red accent panel --- */
.about-image--accent {
  padding-bottom: 20px;
  padding-right: 20px;
}

.about-image--accent::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 75%;
  background: var(--color-primary);
  border-radius: 10px;
  z-index: 0;
}

.about-image--accent::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--color-primary);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px 0 0 0;
  z-index: 2;
  opacity: 0.5;
}

/* --- Treatment 2: Decorative dot grid --- */
.about-image--dots {
  padding-top: 20px;
  padding-left: 20px;
}

.about-image--dots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  z-index: 0;
  background-image: radial-gradient(var(--color-primary) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.4;
}

.about-image--dots::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  border-radius: 0 0 4px 0;
  z-index: 2;
  opacity: 0.5;
}

/* ========================================
   ABOUT — STATS SECTION (Separator 1)
   ======================================== */
.about-stats-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(165, 28, 48, 0.85);
  z-index: 1;
}

.about-stats-section .container {
  position: relative;
  z-index: 2;
}

.about-stats-section .stats-grid {
  background: none;
}

.about-stats-section .stat-icon,
.about-stats-section .stat-icon svg {
  color: var(--color-white);
}

.about-stats-section .stat-icon svg {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.8s ease-out;
}

.about-stats-section.animated .stat-icon svg {
  stroke-dashoffset: 0;
}

.about-stats-section .stat-item:nth-child(1) .stat-icon svg { transition-delay: 0s; }
.about-stats-section .stat-item:nth-child(2) .stat-icon svg { transition-delay: 0.15s; }
.about-stats-section .stat-item:nth-child(3) .stat-icon svg { transition-delay: 0.3s; }
.about-stats-section .stat-item:nth-child(4) .stat-icon svg { transition-delay: 0.45s; }
.about-stats-section .stat-item:nth-child(5) .stat-icon svg { transition-delay: 0.6s; }
.about-stats-section .stat-item:nth-child(6) .stat-icon svg { transition-delay: 0.75s; }

.about-stats-section .stat-number {
  color: var(--color-white);
}

.about-stats-section .stat-label {
  color: rgba(255, 255, 255, 1);
}

/* ========================================
   ABOUT — WHY CAMP SECTION
   ======================================== */
.about-whycamp-section {
  background: var(--color-off-white);
}

/* ========================================
   ABOUT — WHY CAMP MEDIA COLUMN
   ======================================== */
.about-whycamp-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-motto-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.about-motto-inline-item {
  width: 150px;
  flex-shrink: 0;
}

.about-motto-inline-item img {
  width: 100%;
  height: auto;
}

.about-whycamp-media .about-image {
  width: 100%;
}

/* ========================================
   ABOUT — DAVE'S STORY
   ======================================== */
.about-story-section {
  background: var(--color-white);
  padding-bottom: 40px;
}

.about-story-quote {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
  border: none;
  padding: 0;
}

.about-story-quote p {
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 12px;
}

.about-story-quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

.about-story-part2 {
  margin-top: 60px;
}

/* ========================================
   ABOUT — DIAGONAL SEPARATOR
   ======================================== */
.about-diagonal-separator {
  line-height: 0;
  background: var(--color-white);
}

.about-diagonal-separator svg {
  display: block;
  width: 100%;
  height: 80px;
}

.about-diagonal-separator--reverse {
  background: var(--color-primary);
}

/* ========================================
   ABOUT — HOW WE DO IT
   ======================================== */
.about-howwedoit-section {
  background: var(--color-primary);
  padding: 80px 0 90px;
}

.about-howwedoit-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.about-pillar-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 35px 30px;
  text-align: center;
  transition: background var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-pillar-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.about-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.about-pillar-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.about-pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.about-pillar-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-pillar-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--transition-normal), color var(--transition-normal);
}

.about-pillar-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ========================================
   ABOUT — PHOTO MOSAIC
   ======================================== */
.about-mosaic {
  overflow: hidden;
}

.about-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-mosaic-item {
  overflow: hidden;
  height: 280px;
}

.about-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-mosaic-item:hover img {
  transform: scale(1.06);
}

/* ========================================
   ABOUT — VISION SECTION
   ======================================== */
.about-vision-section {
  background: var(--color-off-white);
}

/* ========================================
   ABOUT — CTA BANNER
   ======================================== */
.about-cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.about-cta-banner-bg {
  position: absolute;
  inset: 0;
}

.about-cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.about-cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.about-cta-banner-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-cta-banner-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-btn-outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.about-btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
}

.footer-brand a {
  display: block;
  margin-bottom: 25px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

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

.footer-social a {
  color: var(--color-white);
  transition: opacity var(--transition-fast);
}

.footer-social a:hover {
  opacity: 0.7;
}

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

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col p,
.footer-col p a {
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  transition: color var(--transition-fast);
  line-height: 1.6;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-cards {
    gap: 15px;
  }

  .hero-card-img {
    height: 130px;
  }

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

  .story-section::before {
    width: 350px;
    height: 350px;
  }

  .retreat-img-stack {
    height: 400px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .staff-grid {
    gap: 40px 30px;
  }

  .staff-photo {
    width: 160px;
    height: 160px;
  }

  .about-two-col {
    gap: 40px;
  }

  .about-motto-inline-item {
    width: 140px;
  }

  .about-mosaic-item {
    height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .header-nav {
    display: none;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    bottom: -260px;
    max-width: 400px;
  }

  .hero-card {
    display: grid;
    grid-template-columns: 100px 1fr;
  }

  .hero-card-img {
    height: 100%;
  }

  .hero-card-body {
    padding: 12px 50px 12px 15px;
  }

  .hero-scroll-indicators {
    bottom: 280px;
  }

  .corporate-section {
    padding-top: 300px;
  }

  .hero-slide h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .corporate-section,
  .stats-section,
  .retreat-section,
  .story-section {
    padding: 60px 0;
  }

  .story-section::before {
    width: 280px;
    height: 280px;
  }

  .corporate-text h2,
  .retreat-text h2,
  .story-text h2,
  .stats-heading {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .stat-icon svg {
    width: 42px;
    height: 42px;
  }

  .stat-number {
    font-size: 36px;
  }

  .retreat-img-stack {
    height: 320px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .page-hero {
    height: 35vh;
    min-height: 220px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .staff-grid .staff-card:nth-child(4) {
    grid-column: auto;
    justify-self: center;
    padding-right: 0;
  }

  .staff-grid .staff-card:nth-child(5) {
    grid-column: auto;
    justify-self: center;
    padding-left: 0;
  }

  .staff-photo {
    width: 140px;
    height: 140px;
  }

  .staff-title {
    font-size: 26px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input {
    border-right: 1px solid var(--color-border);
  }

  .page-hero-content h1 {
    font-size: 36px;
  }

  /* About page responsive */
  .about-section {
    padding: 60px 0;
  }

  .about-section-title {
    font-size: 28px;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-two-col--reverse {
    direction: ltr;
  }

  .about-image--accent {
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .about-image--dots {
    padding-top: 16px;
    padding-left: 16px;
  }

  .about-image--accent::after,
  .about-image--dots::after {
    display: none;
  }

  .about-stats-section {
    padding: 40px 0;
  }

  .about-motto-inline {
    gap: 24px;
  }

  .about-motto-inline-item {
    width: 120px;
  }

  .about-story-quote p {
    font-size: 19px;
  }

  .about-story-part2 {
    margin-top: 40px;
  }

  .about-pillar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .about-mosaic-item {
    height: 200px;
  }

  .about-cta-banner {
    padding: 70px 20px;
  }

  .about-cta-banner-content h2 {
    font-size: 28px;
  }

  .about-diagonal-separator svg {
    height: 50px;
  }

  /* Mega menu responsive */
  .mega-menu-content {
    flex-direction: column;
  }

  .mega-menu-left,
  .mega-menu-right {
    padding: 30px;
  }

  .mega-heading {
    font-size: 22px;
  }

  .site-logo {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .hero-slide h1 {
    font-size: 28px;
  }

  .hero-cards {
    max-width: calc(100% - 40px);
  }

  .hero-card-body {
    padding: 10px 15px;
  }

  /* Mega menu tighter spacing */
  .mega-menu-left,
  .mega-menu-right {
    padding: 20px;
  }

  .mega-menu-header {
    padding: 15px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 30px;
  }

  .story-section::before {
    width: 200px;
    height: 200px;
  }

  .story-grid {
    gap: 25px;
  }

  .retreat-grid {
    gap: 25px;
  }

  .corporate-section,
  .stats-section,
  .retreat-section,
  .story-section {
    padding: 40px 0;
  }

  .corporate-section {
    padding-top: 280px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .retreat-img-stack {
    height: 280px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-photo {
    width: 150px;
    height: 150px;
  }

  .about-motto-inline {
    justify-content: center;
  }

  .about-motto-inline-item {
    width: 110px;
  }

  .about-story-quote p {
    font-size: 17px;
  }

  .about-story-quote {
    margin-bottom: 36px;
  }

  .about-story-part2 {
    margin-top: 30px;
  }

  .about-two-col {
    gap: 20px;
  }

  .page-hero-content h1 {
    font-size: 30px;
  }
}

/* ========================================
   RETREATS LANDING PAGE
   ======================================== */

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

.rl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.rl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.rl-hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.rl-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.rl-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
}

.rl-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rl-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.rl-hero-phone:hover {
  opacity: 1;
}

.rl-hero-phone svg {
  flex-shrink: 0;
}

/* --- Trust Bar --- */
.rl-trust-bar {
  background: var(--color-primary);
  padding: 40px 0;
}

.rl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.rl-trust-item {
  color: var(--color-white);
}

.rl-trust-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.rl-trust-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
  margin-top: 4px;
}

/* --- Shared Section Styles --- */
.rl-section {
  padding: 100px 0;
}

.rl-section-title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.rl-section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 50px;
}

/* --- Two-Column Layout --- */
.rl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rl-two-col--reverse {
  direction: rtl;
}

.rl-two-col--reverse > * {
  direction: ltr;
}

.rl-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.rl-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.rl-text .btn {
  margin-top: 12px;
}

/* --- Feature List --- */
.rl-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.rl-feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.rl-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --- Venue Showcase --- */
.rl-venues {
  background: var(--color-off-white);
}

.rl-venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rl-section-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.rl-section-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.rl-section-intro .btn {
  margin-top: 20px;
}

.rl-venue-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.rl-venue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.rl-venue-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.rl-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rl-venue-card:hover .rl-venue-img img {
  transform: scale(1.05);
}

.rl-venue-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rl-venue-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.rl-venue-info p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.rl-venue-btns {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.rl-venue-details-btn,
.rl-venue-spec-btn {
  flex: 1;
  padding: 10px 12px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.rl-venue-details-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.rl-venue-details-btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.rl-venue-spec-btn {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.rl-venue-spec-btn:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

/* --- Venue Detail Lightbox --- */
.rl-venue-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.rl-venue-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.rl-venue-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.rl-venue-lightbox-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rl-venue-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.rl-venue-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.rl-venue-lightbox-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.rl-venue-lightbox-img {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.rl-venue-lightbox-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rl-venue-lightbox-text {
  padding: 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.rl-venue-lightbox-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.rl-venue-lightbox-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.rl-venue-lightbox-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rl-venue-lightbox-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.rl-venue-lightbox-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --- Activities Grid --- */
.rl-activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rl-activity-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: default;
}

.rl-activity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rl-activity-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.rl-activity-item:hover img {
  transform: scale(1.08);
}

.rl-activity-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
}

.rl-activities-more {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-light);
  margin-top: 30px;
  font-style: italic;
}

/* --- Testimonial --- */
.rl-testimonial {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.rl-testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rl-testimonial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rl-testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.rl-testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
}

.rl-quote-icon {
  margin-bottom: 24px;
}

.rl-testimonial-content blockquote {
  font-size: 22px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.rl-testimonial-author {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.rl-testimonial-slider {
  position: relative;
  min-height: 180px;
}

.rl-testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.rl-testimonial-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.rl-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.rl-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.rl-testimonial-dot.active {
  background: var(--color-white);
  border-color: var(--color-white);
}

.rl-testimonial-dot:hover {
  border-color: var(--color-white);
}

/* --- Who We Serve --- */
.rl-serve {
  background: var(--color-off-white);
}

.rl-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.rl-serve-card {
  text-align: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.rl-serve-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.rl-serve-icon svg {
  width: 100%;
  height: 100%;
}

.rl-serve-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.rl-serve-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* --- FAQ Accordion --- */
.rl-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.rl-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.rl-faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.rl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.rl-faq-question:hover {
  color: var(--color-primary);
}

.rl-faq-question svg {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition-normal);
}

.rl-faq-item.active .rl-faq-question svg {
  transform: rotate(180deg);
}

.rl-faq-item.active .rl-faq-question {
  color: var(--color-primary);
}

.rl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.rl-faq-item.active .rl-faq-answer {
  max-height: 300px;
}

.rl-faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* --- Final CTA --- */
.rl-final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.rl-final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rl-final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rl-final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.rl-final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-white);
}

.rl-final-cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.rl-final-cta-content > p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
}

.rl-final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.rl-final-cta-contact {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.rl-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.rl-contact-link:hover {
  opacity: 1;
}

.rl-contact-link svg {
  flex-shrink: 0;
}

/* --- Retreats Landing Responsive --- */
@media (max-width: 1024px) {
  .rl-hero-content h1 {
    font-size: 44px;
  }

  .rl-section {
    padding: 80px 0;
  }

  .rl-section-title {
    font-size: 32px;
  }

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

  .rl-activity-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .rl-hero-content h1 {
    font-size: 36px;
  }

  .rl-hero-sub {
    font-size: 16px;
  }

  .rl-hero-sub br {
    display: none;
  }

  .rl-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .rl-trust-number {
    font-size: 28px;
  }

  .rl-section {
    padding: 60px 0;
  }

  .rl-section-title {
    font-size: 28px;
  }

  .rl-section-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .rl-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rl-two-col--reverse {
    direction: ltr;
  }

  .rl-text h2 {
    font-size: 28px;
  }

  .rl-section-intro {
    margin-bottom: 36px;
  }

  .rl-section-intro p {
    font-size: 15px;
  }

  .rl-venue-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .rl-venue-lightbox-inner {
    grid-template-columns: 1fr;
  }

  .rl-venue-lightbox-img {
    min-height: 250px;
    max-height: 300px;
  }

  .rl-venue-lightbox-text {
    padding: 28px;
    max-height: 50vh;
  }

  .rl-venue-lightbox-content {
    max-height: 95vh;
  }

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

  .rl-testimonial {
    padding: 70px 0;
  }

  .rl-testimonial-content blockquote {
    font-size: 18px;
  }

  .rl-testimonial-slider {
    min-height: 200px;
  }

  .rl-serve-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .rl-final-cta {
    padding: 80px 0;
  }

  .rl-final-cta-content h2 {
    font-size: 30px;
  }

  .rl-final-cta-contact {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .rl-hero-content h1 {
    font-size: 30px;
  }

  .rl-hero-eyebrow {
    font-size: 12px;
  }

  .rl-trust-number {
    font-size: 24px;
  }

  .rl-trust-label {
    font-size: 12px;
  }

  .rl-section {
    padding: 40px 0;
  }

  .rl-section-title {
    font-size: 24px;
  }

  .rl-text h2 {
    font-size: 24px;
  }

  .rl-two-col {
    gap: 24px;
  }

  .rl-activity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .rl-faq-question {
    font-size: 15px;
  }

  .rl-final-cta {
    padding: 50px 0;
  }

  .rl-final-cta-content h2 {
    font-size: 26px;
  }
}

/* ========================================
   SUMMER STAFF PAGE
   ======================================== */

/* --- Hero --- */
.ss-hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.ss-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ss-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ss-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.ss-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding-bottom: 40px;
}

.ss-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ss-hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

.ss-hero-video-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.ss-hero-video-btn-icon {
  display: flex;
  align-items: center;
}

.ss-hero-scroll {
  margin-top: 40px;
  opacity: 0.7;
  animation: ss-bounce 2s infinite;
}

@keyframes ss-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Join Section --- */
.ss-join {
  background: var(--color-white);
  text-align: center;
}

.ss-section {
  padding: 80px 0;
}

.ss-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.ss-join-content {
  max-width: 820px;
  margin: 0 auto 30px;
}

.ss-join-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* --- Info Bar --- */
.ss-info-bar {
  background: var(--color-primary);
  padding: 40px 0;
}

.ss-info-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.ss-info-item {
  text-align: center;
  color: var(--color-white);
}

.ss-info-item h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ss-info-item p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* --- Stories Section --- */
.ss-stories {
  background: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.ss-stories::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: url('/images/2017/08/logo-512.png') no-repeat center center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.ss-stories .container {
  position: relative;
  z-index: 1;
}

.ss-stories-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ss-stories-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 20px;
}

.ss-stories-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.ss-stories-cta-text a {
  color: var(--color-primary);
  font-weight: 600;
}

.ss-stories-media {
  width: 100%;
}

.ss-video-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  background: none;
}

.ss-video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.ss-video-thumbnail:hover img {
  transform: scale(1.03);
}

.ss-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.ss-video-thumbnail:hover .ss-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* --- Bottom CTA --- */
.ss-bottom-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.ss-bottom-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ss-bottom-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-bottom-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.ss-bottom-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.ss-bottom-cta-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* --- Summer Staff Responsive --- */
@media (max-width: 768px) {
  .ss-hero {
    height: 65vh;
    min-height: 420px;
  }

  .ss-hero-content h1 {
    font-size: 36px;
  }

  .ss-section {
    padding: 60px 0;
  }

  .ss-section-title {
    font-size: 26px;
  }

  .ss-info-grid {
    flex-direction: column;
    gap: 30px;
  }

  .ss-stories-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ss-stories-text h2 {
    font-size: 26px;
  }

  .ss-stories::before {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .ss-hero-content h1 {
    font-size: 30px;
  }

  .ss-hero-video-btn {
    padding: 10px 22px;
    font-size: 13px;
  }

  .ss-bottom-cta-content p {
    font-size: 16px;
  }

  .ss-stories::before {
    width: 280px;
    height: 280px;
  }
}

/* ========================================
   BIG BUILD PAGE
   ======================================== */

/* --- Hero --- */
.bb-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bb-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.bb-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.bb-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bb-hero-dates {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* --- Shared Section --- */
.bb-section {
  padding: 70px 0;
}

/* --- Purpose --- */
.bb-purpose {
  background: var(--color-white);
}

.bb-purpose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.bb-purpose-text h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

.bb-purpose-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.bb-purpose-text a {
  color: var(--color-primary);
  font-weight: 600;
}

.bb-purpose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.bb-purpose-list li {
  font-size: 15px;
  color: var(--color-text-light);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.bb-purpose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.bb-purpose-graphic {
  display: flex;
  justify-content: center;
}

.bb-purpose-graphic img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- Form Section --- */
.bb-form-section {
  background: var(--color-off-white);
}

.bb-form-header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.bb-form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.bb-form-dates {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.bb-form-header p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.bb-form-embed {
  max-width: 750px;
  margin: 0 auto;
}

/* --- Big Build Responsive --- */
@media (max-width: 768px) {
  .bb-hero-content h1 {
    font-size: 36px;
  }

  .bb-hero-dates {
    font-size: 14px;
  }

  .bb-section {
    padding: 50px 0;
  }

  .bb-purpose-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bb-purpose-graphic {
    order: -1;
  }

  .bb-form-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .bb-hero {
    height: 40vh;
    min-height: 280px;
  }

  .bb-hero-content h1 {
    font-size: 28px;
  }

  .bb-purpose-text h2 {
    font-size: 24px;
  }
}

/* ========================================
   VOLUNTEER PAGE
   ======================================== */

/* --- Hero --- */
.vol-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.vol-hero-bg {
  position: absolute;
  inset: 0;
}

.vol-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.vol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.vol-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vol-hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- Sections --- */
.vol-section {
  padding: 50px 0;
}

.vol-intro {
  padding-bottom: 20px;
}

.vol-intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* --- Opportunity Rows --- */
.vol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vol-row-reverse {
  direction: rtl;
}

.vol-row-reverse > * {
  direction: ltr;
}

.vol-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.vol-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.vol-text p:last-child {
  margin-bottom: 0;
}

.vol-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

.vol-alt {
  background-color: var(--color-off-white);
}

/* --- CTA --- */
.vol-cta {
  background-color: var(--color-off-white);
  text-align: center;
  padding: 60px 0;
}

.vol-cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.vol-cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* --- Volunteer Responsive --- */
@media (max-width: 768px) {
  .vol-hero-content h1 {
    font-size: 36px;
  }

  .vol-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vol-row-reverse {
    direction: ltr;
  }

  .vol-image img {
    height: 250px;
  }

  .vol-section {
    padding: 40px 0;
  }

  .vol-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .vol-hero {
    height: 40vh;
    min-height: 280px;
  }

  .vol-hero-content h1 {
    font-size: 28px;
  }

  .vol-image img {
    height: 200px;
  }

  .vol-intro-text {
    font-size: 16px;
  }
}

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

/* --- Hero --- */
.ct-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
}

.ct-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

/* --- Heading Bar --- */
.ct-heading-bar {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 28px 0;
}

.ct-heading-bar h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.ct-heading-bar p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* --- Main Layout --- */
.ct-section {
  padding: 60px 0;
}

.ct-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* --- Directions --- */
.ct-directions h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ct-directions-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 28px;
}

.ct-directions-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px;
}

.ct-address-group {
  margin-bottom: 28px;
}

.ct-address {
  margin-bottom: 20px;
}

.ct-address h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.ct-address p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 4px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* --- Form --- */
.ct-form h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.ct-form-embed {
  min-height: 580px;
}

/* --- Contact Responsive --- */
@media (max-width: 768px) {
  .ct-hero {
    height: 35vh;
    min-height: 220px;
  }

  .ct-heading-bar h1 {
    font-size: 26px;
  }

  .ct-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ct-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .ct-hero {
    height: 30vh;
    min-height: 180px;
  }

  .ct-heading-bar {
    padding: 20px 0;
  }

  .ct-heading-bar h1 {
    font-size: 22px;
  }

  .ct-layout {
    gap: 25px;
  }

  .ct-section {
    padding: 30px 0;
  }

  .ct-directions h2,
  .ct-form h2 {
    font-size: 20px;
  }
}

/* ========================================
   RETREAT BOOKING PAGE
   ======================================== */

/* --- Hero --- */
.rb-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
}

.rb-hero-bg {
  position: absolute;
  inset: 0;
}

.rb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.rb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

/* --- Heading Bar --- */
.rb-heading-bar {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 36px 0;
}

.rb-heading-bar h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rb-heading-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 20px;
  opacity: 0.95;
}

.btn-white {
  display: inline-block;
  padding: 10px 28px;
  background-color: #fff;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-white:hover {
  background-color: #f0f0f0;
}

/* --- Sections --- */
.rb-section {
  padding: 50px 0;
}

/* --- Two Column (Retreats + Rates) --- */
.rb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.rb-col h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}

.rb-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.rb-rates-list {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.rb-rates-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

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

/* --- Content Blocks (Why We Call, Lodging, Food, Activities) --- */
.rb-content-block {
  max-width: 800px;
}

.rb-content-block h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.rb-divider {
  width: 60px;
  border: none;
  border-top: 3px solid var(--color-primary);
  margin: 0 0 16px;
}

.rb-content-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.rb-content-block .btn {
  margin-top: 8px;
}

.rb-whycall {
  background-color: var(--color-off-white);
}

/* --- Alternating background for detail sections --- */
.rb-details:nth-of-type(even) {
  background-color: var(--color-off-white);
}

/* --- Callout Box --- */
.rb-callout {
  border: 2px solid var(--color-primary);
  padding: 28px 32px;
  max-width: 800px;
}

.rb-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.rb-callout-section {
  padding: 30px 0 50px;
}

/* --- Form Section --- */
.rb-form-section {
  padding-bottom: 60px;
}

.rb-form-header {
  margin-bottom: 20px;
}

.rb-form-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.rb-form-embed {
  max-width: 800px;
}

/* --- Retreat Booking Responsive --- */
@media (max-width: 768px) {
  .rb-hero {
    height: 35vh;
    min-height: 220px;
  }

  .rb-heading-bar h1 {
    font-size: 26px;
  }

  .rb-heading-desc {
    font-size: 14px;
  }

  .rb-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rb-section {
    padding: 40px 0;
  }

  .rb-col h2,
  .rb-content-block h2,
  .rb-form-header h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .rb-hero {
    height: 30vh;
    min-height: 180px;
  }

  .rb-heading-bar {
    padding: 24px 0;
  }

  .rb-heading-bar h1 {
    font-size: 22px;
  }

  .rb-callout {
    padding: 20px;
  }
}

/* ========================================
   MINISTRY PARTNERS PAGE
   ======================================== */

/* Hero */
.mp-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.mp-hero-bg {
  position: absolute;
  inset: 0;
}

.mp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.mp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mp-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
}

.mp-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.mp-hero-seal {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

/* Heading Bar */
.mp-heading-bar {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 40px 20px;
}

.mp-heading-bar h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.mp-heading-bar .btn-white {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mp-heading-bar .btn-white:hover {
  background: var(--color-off-white);
}

/* Sections */
.mp-section {
  padding: 80px 0;
}

/* Two Column Layout */
.mp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mp-col-left h2,
.mp-col-right h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.mp-col-left p,
.mp-col-right p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.mp-col-left blockquote {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--color-primary);
  background: var(--color-off-white);
}

.mp-col-left blockquote p {
  font-style: italic;
  color: #444;
  margin-bottom: 0;
}

/* Camp Dates */
.mp-col-right h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.mp-dates-list {
  padding: 0;
  margin: 0 0 20px;
}

.mp-dates-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  color: #555;
}

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

.mp-dates-note {
  font-size: 13px !important;
  color: #888 !important;
  font-style: italic;
}

/* Full Width Image */
.mp-full-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.mp-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Quick Links */
.mp-quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-link-btn {
  display: block;
  padding: 14px 20px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all var(--transition-fast);
}

.mp-link-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Partner Form (Wufoo embed) */
.mp-form-wrap {
  background: var(--color-off-white);
  padding: 24px;
  border: 1px solid #e5e5e5;
}

/* CTA */
.mp-cta {
  background: var(--color-primary);
  padding: 60px 0;
  text-align: center;
}

.mp-cta-content p {
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 24px;
}

.mp-cta .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.mp-cta .btn-primary:hover {
  background: var(--color-off-white);
  border-color: var(--color-off-white);
}

/* Ministry Partners Responsive */
@media (max-width: 768px) {
  .mp-hero {
    height: 50vh;
    min-height: 350px;
  }

  .mp-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mp-section {
    padding: 50px 0;
  }

  .mp-full-image {
    height: 280px;
  }

  .mp-form-wrap {
    padding: 24px;
  }

  .mp-heading-bar {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .mp-hero {
    height: 45vh;
    min-height: 300px;
  }

  .mp-hero-seal {
    width: 60px;
    height: 60px;
  }

  .mp-full-image {
    height: 220px;
  }
}

/* ========================================
   EVENTS PAGE
   ======================================== */

/* Hero */
.ev-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.ev-hero-bg {
  position: absolute;
  inset: 0;
}

.ev-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.ev-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
}

.ev-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ev-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
}

/* Sections */
.ev-section {
  padding: 80px 0;
}

.ev-section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-dark);
}

/* Featured Event Card */
.ev-featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.ev-featured-image {
  border-radius: 4px;
  overflow: hidden;
}

.ev-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.ev-featured-details h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.ev-featured-date {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.ev-featured-details p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.ev-featured-details .btn-primary {
  margin-top: 8px;
}

/* Upcoming Events */
.ev-upcoming {
  padding-top: 0;
}

.ev-upcoming-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.ev-upcoming-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

.ev-event-name {
  font-weight: 600;
  color: var(--color-dark);
}

.ev-event-date {
  color: #666;
}

/* Events Responsive */
@media (max-width: 768px) {
  .ev-hero {
    height: 50vh;
    min-height: 350px;
  }

  .ev-featured-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .ev-featured-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .ev-section {
    padding: 50px 0;
  }

  .ev-upcoming {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .ev-hero {
    height: 45vh;
    min-height: 300px;
  }

  .ev-upcoming-list li {
    flex-direction: column;
    gap: 2px;
  }
}

/* ========================================
   REDUCED MOTION (WCAG 2.3.3)
   Only affects users who have enabled
   "Reduce motion" in their OS settings.
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fade-up-delay-1,
  .fade-up-delay-2,
  .fade-up-delay-3,
  .fade-up-delay-4 {
    transition-delay: 0s;
  }

  .hero-slide {
    transition: none;
  }

  .rl-testimonial-slide {
    transition: none;
  }

  .rl-faq-answer {
    transition: none;
  }

  .ss-hero-scroll {
    animation: none;
  }

  .video-lightbox,
  .rl-venue-lightbox {
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

/* --- Hero --- */
.pp-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
}

.pp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

/* --- Heading Bar --- */
.pp-heading-bar {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 28px 0;
}

.pp-heading-bar h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.pp-heading-bar p {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* --- Content --- */
.pp-section {
  padding: 60px 0;
}

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

.pp-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-primary);
}

.pp-content h2:first-child,
.pp-content div:first-child h2 {
  margin-top: 0;
}

.pp-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #444;
  margin-top: 24px;
  margin-bottom: 10px;
}

.pp-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

.pp-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.pp-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 4px;
}

.pp-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.pp-content a:hover {
  color: var(--color-primary-dark);
}

.pp-contact-list {
  list-style: none;
  padding-left: 0;
}

.pp-contact-list li {
  padding: 4px 0;
}

@media (max-width: 768px) {
  .pp-hero {
    height: 35vh;
    min-height: 200px;
  }

  .pp-heading-bar h1 {
    font-size: 24px;
  }

  .pp-section {
    padding: 40px 0;
  }

  .pp-content h2 {
    font-size: 20px;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .pp-hero {
    height: 30vh;
  }

  .pp-heading-bar h1 {
    font-size: 20px;
  }
}

/* ========================================
   CHATBOT WIDGET (.cb-*)
   ======================================== */

/* Toggle Button */
.cb-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.cb-toggle:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.cb-toggle:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 3px;
}

.cb-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cb-toggle .cb-icon-close {
  display: none;
}

.cb-toggle[aria-expanded="true"] .cb-icon-chat {
  display: none;
}

.cb-toggle[aria-expanded="true"] .cb-icon-close {
  display: block;
}

/* Chat Window */
.cb-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  height: 520px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.cb-window.cb-open {
  display: flex;
  animation: cbSlideUp 0.3s ease;
}

@keyframes cbSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.cb-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cb-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-avatar svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.cb-header-text h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white);
}

.cb-header-text p {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.3;
  margin: 0;
}

.cb-close {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.cb-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cb-close:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.cb-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* Messages Area */
.cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.cb-messages::-webkit-scrollbar {
  width: 5px;
}

.cb-messages::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

/* Message Bubbles */
.cb-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.cb-msg-assistant {
  align-self: flex-start;
  background: var(--color-off-white);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
}

.cb-msg-user {
  align-self: flex-end;
  background: var(--color-primary);
  color: var(--color-white);
  border-bottom-right-radius: 4px;
}

.cb-msg a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cb-msg-user a {
  color: var(--color-white);
}

/* Typing Indicator */
.cb-typing {
  display: none;
  align-self: flex-start;
  padding: 12px 18px;
  background: var(--color-off-white);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.cb-typing.cb-visible {
  display: flex;
  gap: 5px;
  align-items: center;
}

.cb-dot {
  width: 7px;
  height: 7px;
  background: var(--color-text-light);
  border-radius: 50%;
  animation: cbBounce 1.4s infinite ease-in-out both;
}

.cb-dot:nth-child(1) { animation-delay: -0.32s; }
.cb-dot:nth-child(2) { animation-delay: -0.16s; }
.cb-dot:nth-child(3) { animation-delay: 0s; }

@keyframes cbBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Input Area */
.cb-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  background: var(--color-white);
}

.cb-textarea {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.4;
  resize: none;
  overflow-y: auto;
  max-height: 96px;
  min-height: 40px;
  outline: none;
  transition: border-color var(--transition-fast);
  color: var(--color-text);
}

.cb-textarea:focus {
  border-color: var(--color-primary);
}

.cb-textarea::placeholder {
  color: var(--color-text-light);
}

.cb-send {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), opacity var(--transition-fast);
}

.cb-send:hover {
  background: var(--color-primary-dark);
}

.cb-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cb-send:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
}

.cb-send svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Powered By */
.cb-powered {
  text-align: center;
  padding: 6px;
  font-size: 11px;
  color: var(--color-text-light);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cb-window {
    width: calc(100% - 32px);
    right: 16px;
    bottom: 96px;
    height: 480px;
  }

  .cb-toggle {
    bottom: 20px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .cb-window {
    width: 100%;
    height: calc(100% - 80px);
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
  }

  .cb-toggle {
    bottom: 16px;
    right: 16px;
  }

  .cb-window.cb-open ~ .cb-toggle {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .cb-window.cb-open {
    animation: none;
  }

  .cb-dot {
    animation: none;
    opacity: 0.6;
  }

  .cb-toggle {
    transition: none;
  }
}
