/* =============================================
   JUDY'S KIDNEY JOURNEY — Main Stylesheet
   ============================================= */

:root {
  /* Kelly Green (existing brand) */
  --green: #2e7d32;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --green-mid: #388e3c;

  /* Blue (new primary accent) */
  --blue: #1565c0;
  --blue-light: #1e88e5;
  --blue-pale: #e3f0fd;
  --blue-mid: #1976d2;
  --blue-dark: #0d47a1;

  /* Red (splash accent) */
  --red: #c62828;
  --red-light: #ef5350;
  --red-pale: #ffebee;

  --white: #ffffff;
  --off-white: #f7f9fc;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #666666;
  --border: #c5d8f0;
  --shadow: rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0d2b6b;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.nav-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #90caf9;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: space-evenly;
  margin-left: 32px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta-item {
  margin-left: 8px;
}

.nav-cta-btn {
  background: var(--green) !important;
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

/* Hero background — full photo */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-climbing-journey.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
  transform: scale(1.0);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-image {
  transform: scale(1.0);
}

/* Dark overlay for text legibility */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 20, 10, 0.28) 0%,
    rgba(10, 30, 15, 0.20) 50%,
    rgba(5, 15, 30, 0.26) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 64px 40px 72px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(46, 125, 50, 0.70);
  border: 2px solid rgba(165, 214, 167, 0.90);
  padding: 10px 26px;
  border-radius: 30px;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.80), 0 4px 40px rgba(0,0,0,0.60);
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: #a5d6a7;
  display: inline-block;
  text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 0 40px rgba(46,125,50,0.5);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-hero-primary {
  display: inline-block;
  background: #2e7d32;
  color: #ffffff;
  padding: 15px 38px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  box-shadow: 0 4px 16px rgba(46,125,50,0.28);
}

.btn-hero-primary:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.36);
}

.btn-hero-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: 2px solid rgba(255,255,255,0.60);
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.90);
  transform: translateY(-2px);
}

/* Hero quote block — inline below CTA buttons */
.hero-quote-block {
  margin-top: 48px;
  padding: 28px 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: left;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-quote-mark {
  display: block;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.5;
  color: #81c784;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-quote-block p {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  margin-bottom: 12px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-quote-attr {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #81c784;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  margin: 6px;
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  display: inline-block;
  background: transparent;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: 2px solid var(--green);
  transition: all 0.2s;
}

.btn-secondary-dark:hover {
  background: var(--green-pale);
  border-color: var(--green-mid);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.8);
  transition: all 0.2s;
  margin: 6px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* =============================================
   URGENT BANNER
   ============================================= */

.urgent-banner {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 60%, var(--green-mid) 100%);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
  border-top: 3px solid var(--red);
}

.urgent-banner p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.urgent-banner strong {
  font-weight: 700;
  color: #ffd54f;
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

section h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* =============================================
   ABOUT SECTION — Bold Redesign
   ============================================= */

.about {
  background: var(--white);
}

/* --- Dark blue-green banner header --- */
.about-banner {
  background: #0d2b6b;
  background-image: linear-gradient(135deg, #0d2b6b 0%, #1565c0 45%, #1b5e20 100%);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,136,229,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(76,175,80,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Red accent stripe at top of banner */
.about-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 50%, var(--red) 100%);
}

.about-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-banner-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #90caf9;
  background: rgba(30,136,229,0.18);
  border: 1px solid rgba(30,136,229,0.4);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.about-banner-label em {
  font-style: normal;
  color: #ffffff;
  background: var(--blue-light);
  padding: 1px 8px;
  border-radius: 12px;
  margin-right: 4px;
  letter-spacing: 2px;
}

.about-banner h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-banner-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Main body: full-width story --- */
.about-body {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 90px;
}

/* --- Featured photo column --- */
.about-featured-photo-wrap {
  position: sticky;
  top: 88px;
  align-self: start;
}

.about-featured-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo-overlay {
  display: none;
}

.about-inset-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
  opacity: 0.92;
}

/* --- Story card column --- */
.about-story-card {
  padding: 56px 80px;
  background: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.about-story-card p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.85;
  max-width: 760px;
}

.about-story-card .lead {
  font-size: 1.22rem;
  color: var(--text-dark);
  font-weight: 400;
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.72;
  margin-bottom: 24px;
}

/* --- Float photo within story text --- */
.story-float-photo {
  float: right;
  width: 280px;
  margin: 0 0 24px 36px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  border: 3px solid var(--green-pale);
  shape-outside: border-box;
}

.story-float-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.story-float-photo figcaption {
  background: var(--green-pale);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 680px) {
  .story-float-photo {
    float: none;
    width: 100%;
    margin: 0 0 24px 0;
  }

  .story-float-photo img {
    height: 260px;
  }
}

/* --- Pull quote --- */
.about-pull-quote {
  position: relative;
  background: #0d2b6b;
  background-image: linear-gradient(135deg, #0d2b6b 0%, #1565c0 60%, #1b5e20 100%);
  border-radius: 8px;
  padding: 36px 40px 32px;
  margin: 32px 0 32px;
  overflow: hidden;
  border-left: 4px solid var(--red);
}

.about-pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(30,136,229,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.pull-quote-mark {
  display: block;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: #90caf9;
  opacity: 0.55;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.about-pull-quote p {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1.22rem;
  color: var(--white) !important;
  line-height: 1.65;
  margin-bottom: 16px !important;
  position: relative;
  z-index: 1;
}

.pull-quote-attr {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #90caf9;
  position: relative;
  z-index: 1;
}

.signature {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* --- Letter CTA block --- */
.about-letter-cta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #e8f5e9 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 28px 28px 28px 24px;
  margin-top: 36px;
}

.letter-cta-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.letter-cta-content h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.letter-cta-content p {
  font-size: 0.98rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.7;
}

.btn-letter {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}

.btn-letter:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

/* =============================================
   PHOTO CAROUSEL SECTION — Full Redesign
   ============================================= */

.photo-carousel-section {
  background: linear-gradient(160deg, #0a1e4a 0%, #0d2b6b 50%, #1a3d1c 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.photo-carousel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c62828, #ef5350, #c62828);
}

/* --- Section Header --- */
.carousel-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.carousel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a5d6a7;
  margin-bottom: 14px;
}

.carousel-eyebrow::before,
.carousel-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #a5d6a7;
  opacity: 0.7;
}

.carousel-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.carousel-title em {
  font-style: italic;
  color: #a5d6a7;
}

.carousel-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
}

/* --- Stage wrapper --- */
.carousel-stage {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Main window --- */
.carousel-main-window {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.10);
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  transition: opacity 0.75s ease;
}

.carousel-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 8s ease;
}

.carousel-slide.active img {
  transform: scale(1.03);
}

/* --- Caption overlay at bottom of slide --- */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 32px 28px;
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.88) 0%,
    rgba(5, 15, 35, 0.55) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.caption-text {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  max-width: 680px;
}

/* --- Nav arrows --- */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 15, 35, 0.65);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.40);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}

.carousel-btn:hover {
  background: rgba(21, 101, 192, 0.85);
  border-color: rgba(255,255,255,0.80);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* --- Slide counter badge --- */
.carousel-counter {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(5, 15, 35, 0.70);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(4px);
  z-index: 10;
}

/* --- Thumbnail strip --- */
.carousel-thumbs {
  display: none;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.carousel-thumbs::-webkit-scrollbar { display: none; }

.carousel-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s, opacity 0.25s, transform 0.2s;
  opacity: 0.55;
  position: relative;
}

.carousel-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.carousel-thumb.active {
  border-color: #a5d6a7;
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(165, 214, 167, 0.35);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* --- Dot indicators (hidden on desktop, shown on mobile) --- */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: #a5d6a7;
  transform: scale(1.4);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .carousel-slide img {
    height: 420px;
  }

  .carousel-thumbs {
    gap: 8px;
  }

  .carousel-thumb {
    width: 90px;
    height: 62px;
  }
}

@media (max-width: 768px) {
  .photo-carousel-section {
    padding: 56px 0 64px;
  }

  .carousel-slide img {
    height: 340px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .caption-text {
    font-size: 0.88rem;
  }

  .carousel-thumbs {
    display: none;
  }

  .carousel-dots {
    display: flex;
  }
}

@media (max-width: 480px) {
  .photo-carousel-section {
    padding: 44px 0 52px;
  }

  .carousel-slide img {
    height: 280px;
  }

  .carousel-caption {
    padding: 40px 20px 20px;
  }

  .caption-text {
    font-size: 0.82rem;
  }

  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }
}

/* Inline carousel (directly below Meet Judy banner, no header) */
.photo-carousel-inline {
  padding-top: 0;
  padding-bottom: 48px;
  margin-top: 0;
}

.photo-carousel-inline::before {
  display: none;
}

/* =============================================
   FLYER SECTION
   ============================================= */

.flyer-section {
  padding: 90px 0;
  background-color: #eef4f0;
  background-image:
    linear-gradient(to right, rgba(238,244,240,0.92) 0%, rgba(238,244,240,0.82) 50%, rgba(238,244,240,0.92) 100%),
    url('images/bg-mountain-trail-misty.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  border-top: 3px solid var(--red);
  position: relative;
}

.flyer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.flyer-image-wrap {
  text-align: center;
}

.flyer-img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
}

.flyer-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

.flyer-info h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.flyer-info p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.75;
}

.contact-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  backdrop-filter: blur(4px);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--blue-pale);
  align-items: flex-start;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
  min-width: 80px;
  padding-top: 2px;
}

.contact-value {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-value a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-value a:hover {
  text-decoration: underline;
}

.what-to-expect {
  margin-bottom: 28px;
}

.what-to-expect h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.what-to-expect ul {
  list-style: none;
  padding: 0;
}

.what-to-expect ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.98rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--blue-pale);
  line-height: 1.6;
}

.what-to-expect ul li:last-child {
  border-bottom: none;
}

.what-to-expect ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
}

.btn-call {
  font-size: 1.05rem;
  padding: 16px 28px;
  width: 100%;
  text-align: center;
  display: block;
  margin: 0;
  background: var(--red);
}

.btn-call:hover {
  background: var(--red-light);
}

.flyer-unmc-link {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.flyer-unmc-link .btn-primary {
  display: inline-block;
  width: auto;
  margin: 0;
  font-size: 1rem;
  padding: 14px 32px;
  background: var(--green);
}

.flyer-unmc-link .btn-primary:hover {
  background: var(--green-mid);
}

/* =============================================
   FOUNDATION SECTION
   ============================================= */

/* Subtle mountain-journey section divider */
.flyer-section::before,
.foundation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,125,50,0.4) 30%, rgba(46,125,50,0.6) 50%, rgba(46,125,50,0.4) 70%, transparent 100%);
  pointer-events: none;
}

.foundation {
  padding: 90px 0;
  background-color: #f0f5f1;
  background-image:
    linear-gradient(to left, rgba(240,245,241,0.90) 0%, rgba(240,245,241,0.78) 50%, rgba(240,245,241,0.90) 100%),
    url('images/bg-mountain-forest-mist.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  position: relative;
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.foundation-text .lead {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.7;
  margin-bottom: 20px;
}

.foundation-text p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.8;
}

.foundation-cta {
  margin: 32px 0;
}

.foundation-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.fact {
  text-align: center;
  background: rgba(227,240,253,0.88);
  border-radius: 8px;
  padding: 24px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  backdrop-filter: blur(4px);
}

.fact-number {
  display: block;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.fact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.foundation-ribbon {
  text-align: center;
  padding-top: 20px;
}

.ribbon-large {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 4px 16px rgba(21, 101, 192, 0.3));
}

.ribbon-caption {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 20px;
  line-height: 1.6;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.kidney-ribbon-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ribbon-svg {
  width: 200px;
  height: 280px;
  filter: drop-shadow(0 6px 20px rgba(46, 125, 50, 0.45));
}

.ribbon-text-badge {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 60%, #388e3c 100%);
  color: #ffffff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid #4caf50;
  line-height: 1.4;
  box-shadow: 0 3px 12px rgba(46, 125, 50, 0.3);
}

/* =============================================
   SHARE SECTION
   ============================================= */

.share-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--green-pale) 100%);
  text-align: center;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.share-section h2 {
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.share-section p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.75;
}

.share-ask {
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
  padding: 90px 0;
  background: var(--off-white);
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-opt h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.contact-opt p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.75;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  margin: 0;
  width: 100%;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--blue);
  text-align: center;
  min-height: 20px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: linear-gradient(135deg, #0a1e4a 0%, #0d2b6b 50%, #1a3d1c 100%);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
  text-align: center;
  border-top: 4px solid var(--red);
}

.footer-ribbon img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
  border-radius: 6px;
}

.footer-campaign-logo {
  margin-bottom: 24px;
}

.footer-campaign-logo img {
  height: 90px;
  width: auto;
  border-radius: 8px;
  opacity: 0.95;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.15);
}

.footer-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #90caf9;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-divider {
  color: rgba(255,255,255,0.3);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1000px) {
  .about-story-card {
    padding: 48px 40px;
  }

  .about-body {
    padding-bottom: 70px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
  }

  .hero-inner {
    padding: 40px 28px 44px;
  }

  .flyer-grid,
  .foundation-grid,
  .contact-options {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .foundation-ribbon {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-photo-overlay {
    display: none !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0d2b6b;
    border-bottom: 2px solid var(--green);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta-item {
    margin-left: 0;
  }

  .hero-inner {
    padding: 48px 24px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-quote-block {
    padding: 20px 0 0;
  }

  .foundation-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-story-card {
    padding: 36px 24px;
  }

  .about-pull-quote {
    padding: 28px 28px 24px;
  }

  .pull-quote-mark {
    font-size: 3.5rem;
  }

  .about-pull-quote p {
    font-size: 1.08rem !important;
  }

  .flyer-img {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .flyer-section,
  .foundation {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary-dark,
  .btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }

  .flyer-section,
  .foundation,
  .contact-section {
    padding: 60px 0;
  }

  .about-banner {
    padding: 52px 20px 60px;
  }

  .about-story-card {
    padding: 28px 20px;
  }

  .about-pull-quote {
    padding: 24px 20px 20px;
  }
}
