/* ============================================================
   SUPPORTING THE OBERST FAMILY — STYLESHEET
   Colors drawn from the Bloomfield Sting uniform:
     Navy:   #1B2A4A
     Orange: #E8652A
   ============================================================ */

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: #2c2c2c;
  background: #faf9f7;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.page-ready {
  opacity: 1;
}

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

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

/* ---------- PAGE LOADER ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1B2A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.loader-heart {
  color: #E8652A;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-text {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-top: 16px;
  opacity: 0.85;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1B2A4A 0%, #0f1b33 60%, #1a2844 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(232,101,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  color: rgba(232,101,42,0.6);
  line-height: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 40px;
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 8px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.badge-divider {
  color: #E8652A;
  font-weight: 700;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin-bottom: 40px;
}

.hero-photo-frame {
  display: inline-block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 3px rgba(232,101,42,0.3);
  max-width: 320px;
  margin: 0 auto 40px;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

.hero-photo {
  border-radius: 12px;
  transition: transform 6s ease;
}

.hero-photo-frame:hover .hero-photo {
  transform: scale(1.03);
}

.hero-scroll-cue {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-arrow {
  animation: bobDown 2s ease-in-out infinite;
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- FADE-IN ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.5s; }
.fade-in.delay-4 { animation-delay: 0.75s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- DECORATIVE LINE ---------- */
.decorative-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #E8652A, #d4551d);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.decorative-line.light {
  background: linear-gradient(90deg, rgba(232,101,42,0.7), rgba(232,101,42,0.4));
}

/* ---------- LETTER SECTION ---------- */
.letter-section {
  padding: 100px 0 80px;
  background: #faf9f7;
}

.letter-header {
  text-align: center;
  margin-bottom: 48px;
}

.letter-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #1B2A4A;
  margin-bottom: 16px;
}

.letter-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #666;
}

.letter-body p {
  font-size: 1.05rem;
  color: #3a3a3a;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.letter-body strong {
  color: #1B2A4A;
}

/* ---------- PULL QUOTE ---------- */
.pull-quote {
  position: relative;
  margin: 48px auto;
  padding: 32px 40px;
  max-width: 640px;
  text-align: center;
  border-left: none;
  background: linear-gradient(135deg, rgba(27,42,74,0.03) 0%, rgba(232,101,42,0.04) 100%);
  border-radius: 8px;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(232,101,42,0.15);
  line-height: 1;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: #1B2A4A;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

/* ---------- PHOTO TRIBUTE ---------- */
.tribute-section {
  padding: 80px 0 100px;
  background: #f3f1ee;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #1B2A4A;
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #888;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}

.gallery-item--large {
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
}

.gallery-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: #e0ddd8;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(27,42,74,0.08);
  pointer-events: none;
}

.gallery-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.gallery-frame img {
  width: 100%;
  border-radius: 10px;
  transition: transform 5s ease;
}

.gallery-frame:hover img {
  transform: scale(1.03);
}

/* ---------- GIFT OF LIFE ---------- */
.gift-section {
  position: relative;
  padding: 100px 0;
  background: #1B2A4A;
  overflow: hidden;
}

.gift-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,101,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.gift-icon {
  color: #E8652A;
  margin-bottom: 20px;
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.gift-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #ffffff;
  margin-bottom: 24px;
}

.gift-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gift-content strong {
  color: #ffffff;
}

.gift-content em {
  color: #E8652A;
  font-style: normal;
  font-weight: 700;
}

/* ---------- DONATION SECTION ---------- */
.donation-section {
  padding: 100px 0;
  background: #faf9f7;
}

.donation-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.06),
    0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}

.donation-header {
  text-align: center;
  padding: 48px 32px 32px;
  background: linear-gradient(180deg, rgba(27,42,74,0.02) 0%, transparent 100%);
}

.donation-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #1B2A4A;
  margin-bottom: 8px;
}

.donation-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #888;
}

.donation-body {
  padding: 16px 40px 48px;
}

.donation-body > p {
  font-size: 1.02rem;
  color: #4a4a4a;
  margin-bottom: 24px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- MATCH BANNER ---------- */
.match-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #1B2A4A 0%, #243658 100%);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid #E8652A;
}

.match-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232,101,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8652A;
}

.match-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #E8652A;
  margin-bottom: 6px;
}

.match-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  text-align: left !important;
  margin-bottom: 0 !important;
}

.match-text p strong {
  display: inline;
  font-family: 'Lato', sans-serif;
  font-size: inherit;
  color: #ffffff;
}

/* ---------- DONATION FORM WRAPPER ---------- */
.donate-form-wrapper {
  margin-top: 36px;
  padding: 32px;
  background: #faf9f7;
  border-radius: 12px;
  border: 1px solid rgba(27,42,74,0.06);
}

/* ---------- HIDE PRODUCT TITLE (visually hidden, still in DOM for cart/checkout) ---------- */
.donate-form-wrapper h4,
.donate-form-wrapper .product_title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- HIDE WOO DONATION PLACEHOLDER IMAGE ---------- */
.donate-form-wrapper .woocommerce-loop-product__title,
.donate-form-wrapper .wc-woo-donation-title,
.donate-form-wrapper .woo-donation-title,
.donate-form-wrapper .product_title,
.donate-form-wrapper h2.woocommerce-loop-product__title,
.donate-form-wrapper .block-campaign-thumbnail,
.donate-form-wrapper .woo-donation-thumbnail,
.donate-form-wrapper .woocommerce-product-gallery,
.donate-form-wrapper .attachment-woocommerce_thumbnail,
.donate-form-wrapper img.wp-post-image,
.donate-form-wrapper .wc-woo-donation-image,
.donate-form-wrapper .woocommerce-placeholder,
.donate-form-wrapper .campaign-thumbnail {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ---------- WOO DONATION FORM OVERRIDES ---------- */
.donate-form-wrapper .wc-woo-donation,
.donate-form-wrapper .woo-donation-wrap,
.donate-form-wrapper .wc_woo_donation {
  font-family: 'Lato', sans-serif !important;
}

/* Labels */
.donate-form-wrapper label:not(.cover-fees-label) {
  font-family: 'Lato', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #1B2A4A !important;
  margin-bottom: 8px !important;
  display: block;
}

/* Text / Number Inputs */
.donate-form-wrapper input[type="text"],
.donate-form-wrapper input[type="number"],
.donate-form-wrapper input[type="email"],
.donate-form-wrapper input[type="tel"],
.donate-form-wrapper textarea,
.donate-form-wrapper select {
  width: 100% !important;
  padding: 14px 16px !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 1rem !important;
  color: #2c2c2c !important;
  background: #ffffff !important;
  border: 2px solid rgba(27,42,74,0.12) !important;
  border-radius: 8px !important;
  outline: none !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  -webkit-appearance: none;
  appearance: none;
}

.donate-form-wrapper input:focus,
.donate-form-wrapper textarea:focus,
.donate-form-wrapper select:focus {
  border-color: #E8652A !important;
  box-shadow: 0 0 0 3px rgba(232,101,42,0.12) !important;
}

/* Donation amount input — make it prominent */
.donate-form-wrapper input[name*="donation"],
.donate-form-wrapper input[name*="amount"],
.donate-form-wrapper .donation-amount input {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 16px !important;
  border: 2px solid rgba(232,101,42,0.25) !important;
}

/* Radio buttons / preset amounts */
.donate-form-wrapper input[type="radio"] {
  accent-color: #E8652A;
}

.donate-form-wrapper .donation-amount-options label,
.donate-form-wrapper .woo-donation-price-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  margin: 4px !important;
  background: #ffffff !important;
  border: 2px solid rgba(27,42,74,0.1) !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
  font-weight: 600 !important;
  color: #1B2A4A !important;
}

.donate-form-wrapper .donation-amount-options label:hover,
.donate-form-wrapper .woo-donation-price-label:hover {
  border-color: #E8652A !important;
  color: #E8652A !important;
}

.donate-form-wrapper .donation-amount-options input[type="radio"]:checked + label,
.donate-form-wrapper .woo-donation-price-label.active,
.donate-form-wrapper .woo-donation-price-label.selected {
  background: #E8652A !important;
  border-color: #E8652A !important;
  color: #ffffff !important;
}

/* Submit / Add to Cart button */
.donate-form-wrapper button[type="submit"],
.donate-form-wrapper input[type="submit"],
.donate-form-wrapper .button,
.donate-form-wrapper .single_add_to_cart_button,
.donate-form-wrapper .woo-donation-submit {
  display: block !important;
  width: 100% !important;
  padding: 16px 32px !important;
  margin-top: 20px !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #E8652A 0%, #d4551d 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(232,101,42,0.3) !important;
  text-transform: none !important;
}

.donate-form-wrapper button[type="submit"]:hover,
.donate-form-wrapper input[type="submit"]:hover,
.donate-form-wrapper .button:hover,
.donate-form-wrapper .single_add_to_cart_button:hover,
.donate-form-wrapper .woo-donation-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(232,101,42,0.4) !important;
  background: linear-gradient(135deg, #f0713a 0%, #E8652A 100%) !important;
}

/* Currency symbol styling */
.donate-form-wrapper .woocommerce-Price-currencySymbol,
.donate-form-wrapper .currency-symbol {
  font-weight: 700;
  color: #1B2A4A;
}

/* Messages / notices */
.donate-form-wrapper .woocommerce-message,
.donate-form-wrapper .woocommerce-info {
  background: rgba(232,101,42,0.06) !important;
  border-left: 4px solid #E8652A !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  font-size: 0.92rem !important;
  color: #1B2A4A !important;
}

/* Spacing between form fields */
.donate-form-wrapper p,
.donate-form-wrapper .form-row {
  margin-bottom: 16px;
}

/* ---------- COVER THE FEES CHECKBOX ---------- */
.cover-fees-wrapper {
  margin: 20px 0 8px;
}

.cover-fees-label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  background: rgba(27,42,74,0.03);
  border: 1px solid rgba(27,42,74,0.08);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-weight: 400 !important;
  font-size: 0.92rem !important;
  color: #3a3a3a !important;
  line-height: 1.6;
}

.cover-fees-label:hover {
  border-color: rgba(232,101,42,0.3);
  background: rgba(232,101,42,0.03);
}

.cover-fees-checkbox {
  flex-shrink: 0;
  width: 20px !important;
  height: 20px !important;
  margin-top: 3px;
  accent-color: #E8652A;
  cursor: pointer;
}

.cover-fees-text {
  flex: 1;
  display: inline !important;
}

.cover-fees-text strong {
  color: #1B2A4A;
  display: inline !important;
  font-size: inherit !important;
}

.cover-fees-detail {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: #E8652A;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- CLOSING SECTION ---------- */
.closing-section {
  padding: 80px 0;
  background: #f3f1ee;
}

.closing-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.closing-message {
  font-size: 1.08rem;
  color: #3a3a3a;
  margin-bottom: 20px;
  line-height: 1.8;
}

.closing-prayer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #1B2A4A;
  margin-bottom: 40px;
}

.closing-signature {
  padding-top: 24px;
  border-top: 1px solid rgba(27,42,74,0.1);
  display: inline-block;
}

.signature-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #888;
  margin-bottom: 8px;
}

.signature-org {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1B2A4A;
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 48px 0;
  background: #1B2A4A;
  text-align: center;
}

.footer-tribute {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-divider {
  width: 32px;
  height: 2px;
  background: rgba(232,101,42,0.4);
  margin: 0 auto 16px;
  border-radius: 1px;
}

.footer-orgs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- LOGO BAR ---------- */
.logo-bar {
  position: relative;
  z-index: 10;
  padding: 28px 32px;
  background: linear-gradient(160deg, #1B2A4A 0%, #0f1b33 60%, #1a2844 100%);
  border-bottom: none;
}

.logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.logo-bbl {
  height: 140px;
  width: auto;
}

.logo-sting {
  height: 120px;
  width: auto;
}

/* ---------- FLOATING DONATE PANEL (TOP RIGHT) ---------- */
.floating-donate-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #E8652A, #d4551d);
  color: #ffffff;
  text-decoration: none;
  padding: 22px 32px;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(232,101,42,0.4);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  max-width: 400px;
  width: 380px;
}

.floating-donate-panel:hover {
  box-shadow: 0 10px 40px rgba(232,101,42,0.55);
  transform: translateY(-2px);
}

.fdp-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fdp-top svg {
  flex-shrink: 0;
  animation: gentlePulse 3s ease-in-out infinite;
}

.fdp-cta {
  font-family: 'Lato', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fdp-divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 10px 0;
}

.fdp-match {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fdp-match-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.fdp-match-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.fdp-match-text strong {
  color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-content { padding: 40px 20px 32px; }
  .hero-photo-frame { max-width: 260px; }
  .hero-badge { flex-wrap: wrap; justify-content: center; gap: 4px 10px; font-size: 0.7rem; padding: 6px 16px; }

  .letter-section { padding: 72px 0 60px; }
  .letter-body p { font-size: 1rem; }

  .photo-gallery { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item--large { max-width: 100%; }

  .pull-quote { padding: 28px 24px; margin: 36px auto; }
  .pull-quote::before { font-size: 3.5rem; top: -4px; }

  .gift-section { padding: 72px 0; }
  .gift-content p { font-size: 0.98rem; }

  .donation-section { padding: 72px 0; }
  .donation-body { padding: 16px 24px 40px; }
  .match-banner { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .match-text p { text-align: center !important; }

  .donate-button { padding: 14px 36px; font-size: 1rem; }

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

  .logo-bbl { height: 90px; }
  .logo-sting { height: 75px; }
  .logo-bar { padding: 16px 20px; position: sticky; top: 0; z-index: 101; }
  .logo-bar-inner { gap: 28px; }

  .floating-donate-panel { position: sticky; top: 107px; z-index: 100; max-width: none; width: 100%; padding: 12px 20px; border-radius: 0; flex-direction: row; align-items: center; gap: 14px; right: auto; left: auto; }
  .fdp-divider { display: none; }
  .fdp-top { flex: 0 0 auto; }
  .fdp-top svg { width: 16px; height: 16px; }
  .fdp-cta { font-size: 1rem; }
  .fdp-match { flex: 1; }
  .fdp-match-title { font-size: 0.8rem; }
  .fdp-match-text { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-photo-frame { max-width: 220px; }
  .hero-badge { font-size: 0.65rem; }
  .donation-body { padding: 12px 16px 32px; }
  .match-banner { padding: 20px 16px; }
  .logo-bbl { height: 72px; }
  .logo-sting { height: 60px; }
}
