/* ============================================================
   De La Cruz Family Foundation — Premium Stylesheet
   Design: Gold on Black heritage crest identity
   Palette: Rich black, warm gold, ivory, champagne
   Typography: Playfair Display (serif) + Inter (sans)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --brand-black:      #0F1419;
  --brand-charcoal:   #1A2028;
  --brand-dark:       #232B35;
  --brand-gold:       #C8973E;
  --brand-gold-light: #D4AA5A;
  --brand-gold-dark:  #A67C2E;
  --brand-gold-pale:  #E8C878;
  --brand-ivory:      #FAF7F2;
  --brand-champagne:  #F0E8D8;
  --brand-stone:      #E8E0D4;
  --brand-warm-gray:  #6B6460;
  --brand-soft-gray:  #9A9490;
  --white:            #ffffff;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---------- Headings — Playfair Display ---------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
}

/* ---------- Header Logo ---------- */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
}

.header-logo:hover {
  transform: translateY(-1px);
}

.header-logo-crest {
  height: 2.75rem;
  width: auto;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(200, 151, 62, 0.15));
}

.header-logo:hover .header-logo-crest {
  filter: drop-shadow(0 0 14px rgba(200, 151, 62, 0.30));
  transform: scale(1.03);
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px rgba(200, 151, 62, 0.25);
  transition: text-shadow 0.35s ease;
}

.header-logo:hover .header-logo-name {
  text-shadow: 0 0 28px rgba(200, 151, 62, 0.45);
}

.header-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(200, 151, 62, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.35s ease;
}

.header-logo:hover .header-logo-sub {
  color: rgba(200, 151, 62, 0.85);
}

/* Hide text on very small screens, keep icon */
@media (max-width: 374px) {
  .header-logo-text { display: none; }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-black);
  transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(15, 20, 25, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Desktop nav links */
.nav-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--brand-gold);
  background: rgba(200, 151, 62, 0.08);
}

/* Mobile nav links */
.mobile-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

/* Footer links */
.footer-link {
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--brand-gold);
}

/* ---------- Hero — 2-Column Split Layout ---------- */
.hero-split {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0a0e13 0%, var(--brand-black) 35%, var(--brand-charcoal) 75%, #1c2430 100%);
  overflow: hidden;
}

/* Ambient gold atmosphere */
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 25% 50%, rgba(200, 151, 62, 0.07) 0%, transparent 100%),
    radial-gradient(ellipse 500px 500px at 80% 25%, rgba(200, 151, 62, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Bottom fade to next section */
.hero-split::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--brand-ivory), transparent);
  pointer-events: none;
  z-index: 3;
}

/* 2-column grid container — fully fluid 25/75 split */
.hero-split-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(2rem, 3vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    min-height: 92vh;
  }
}

/* ---- LEFT COLUMN: Logo Showcase ---- */
.hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-logo-showcase {
  position: relative;
  width: 100%;
  max-width: min(510px, 85vw);
  margin: 0 auto;
  animation: logoFloat 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-logo-showcase {
    max-width: 100%;
    padding: 1rem;
  }
}

/* Ambient glow behind the logo */
.hero-logo-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 151, 62, 0.14) 0%,
    rgba(200, 151, 62, 0.08) 30%,
    rgba(180, 140, 60, 0.03) 55%,
    transparent 75%
  );
  filter: blur(40px);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

/* The logo image */
.hero-logo-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 50px rgba(200, 151, 62, 0.20))
    drop-shadow(0 0 15px rgba(200, 151, 62, 0.10));
  transition: filter 0.6s var(--ease-out);
}

.hero-logo-showcase:hover .hero-logo-img {
  filter:
    drop-shadow(0 0 60px rgba(200, 151, 62, 0.30))
    drop-shadow(0 0 20px rgba(212, 170, 90, 0.15));
}

/* Gentle float animation */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Subtle glow pulse */
@keyframes glowPulse {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

/* ---- RIGHT COLUMN: Text Content ---- */
.hero-text-col {
  position: relative;
  min-width: 0;
}

@media (max-width: 1023px) {
  .hero-text-col {
    text-align: center;
  }
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* Gold accent divider */
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-gold-pale), transparent);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

@media (max-width: 1023px) {
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Body text */
.hero-body {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  max-width: 42em;
}

@media (max-width: 1023px) {
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Italic quote */
.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 500;
  color: var(--brand-gold);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  max-width: 42em;
}

@media (max-width: 1023px) {
  .hero-quote {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tagline */
.hero-tagline {
  font-size: clamp(0.8125rem, 0.8vw + 0.4rem, 0.9375rem);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.5rem;
  max-width: 42em;
}

@media (max-width: 1023px) {
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* CTA button row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

@media (max-width: 1023px) {
  .hero-ctas {
    justify-content: center;
  }
}

/* Primary CTA — Gold */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: var(--brand-gold);
  color: var(--brand-black);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: 2px solid var(--brand-gold);
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 151, 62, 0.30);
}

/* Outline CTA — Ghost */
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: 2px solid rgba(255, 255, 255, 0.20);
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.40);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

/* Page hero (inner pages) */
.page-hero-premium {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(160deg, #0a0e13 0%, var(--brand-black) 50%, var(--brand-charcoal) 100%);
  overflow: hidden;
}

.page-hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 400px at 20% 60%, rgba(200, 151, 62, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-gold-pale));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.gold-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Section Label ---------- */
.section-label-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

/* ---------- Premium Cards ---------- */
.card-premium {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.25rem;
  border: 1px solid var(--brand-stone);
  transition: all 0.4s var(--ease-out);
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 20, 25, 0.08), 0 8px 20px rgba(200, 151, 62, 0.06);
  border-color: var(--brand-gold-light);
}

.card-dark {
  background: var(--brand-charcoal);
  border-color: rgba(255, 255, 255, 0.06);
}

.card-dark:hover {
  border-color: rgba(200, 151, 62, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-dark h3,
.card-dark h4 {
  color: white;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.6);
}

/* Card icon containers */
.icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.icon-box-gold {
  background: linear-gradient(135deg, rgba(200, 151, 62, 0.12), rgba(200, 151, 62, 0.05));
  color: var(--brand-gold);
}

.icon-box-dark {
  background: rgba(15, 20, 25, 0.06);
  color: var(--brand-black);
}

.icon-box-ivory {
  background: rgba(200, 151, 62, 0.08);
  color: var(--brand-gold-dark);
}

/* ---------- Pathway Visual ---------- */
.pathway-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pathway-step {
  background: var(--white);
  border: 1px solid var(--brand-stone);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand-charcoal);
  text-align: center;
  min-width: 140px;
  transition: all 0.3s var(--ease-out);
}

.pathway-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pathway-step-dark {
  background: var(--brand-black);
  color: white;
  border-color: var(--brand-black);
}

.pathway-step-gold {
  background: var(--brand-gold);
  color: var(--brand-black);
  border-color: var(--brand-gold);
  font-weight: 700;
}

.pathway-arrow {
  color: var(--brand-gold);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Stat Numbers ---------- */
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
}

/* ---------- Blockquote ---------- */
.quote-premium {
  background: var(--brand-ivory);
  border-left: 3px solid var(--brand-gold);
  padding: 2rem 2.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  font-size: 1.0625rem;
  color: var(--brand-warm-gray);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ---------- CTA Sections ---------- */
.cta-premium {
  background: linear-gradient(135deg, var(--brand-black) 0%, var(--brand-charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(200, 151, 62, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

/* ---------- Forms ---------- */
.form-input-premium,
.form-textarea-premium,
.form-select-premium {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--brand-stone);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--brand-charcoal);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-premium:focus,
.form-textarea-premium:focus,
.form-select-premium:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.12);
}

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

/* ---------- Accordion ---------- */
.accordion-item-premium {
  border: 1px solid var(--brand-stone);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item-premium:hover {
  border-color: var(--brand-gold-light);
}

.accordion-trigger-premium {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  font-family: var(--font-sans);
  text-align: left;
}

.accordion-trigger-premium:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: -3px;
}

.accordion-content-premium {
  padding: 0 1.5rem 1.25rem;
  color: var(--brand-warm-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- Image Placeholders ---------- */
.img-placeholder-premium {
  background: linear-gradient(135deg, var(--brand-stone), var(--brand-champagne));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-warm-gray);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--brand-stone);
}

/* ---------- Step Numbers ---------- */
.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ---------- Badge ---------- */
.badge-gold {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2rem;
  color: var(--brand-gold-dark);
  background: rgba(200, 151, 62, 0.1);
  border: 1px solid rgba(200, 151, 62, 0.15);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---------- Alpine cloak ---------- */
[x-cloak] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .hero-premium {
    min-height: auto;
    padding: 7rem 0 5rem;
  }
  .hero-premium::after {
    height: 60px;
  }
  .page-hero-premium {
    padding: 8rem 0 3.5rem;
  }
  .stat-number {
    font-size: 2.25rem;
  }
}

/* ---------- Navigation Dropdown ---------- */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(15, 20, 25, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-top: 0.25rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  z-index: 1001;
}

.nav-dropdown-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.nav-dropdown-link:hover {
  color: #ffffff;
  background: rgba(200, 151, 62, 0.12);
}

/* ---------- Signature Pad ---------- */
.signature-wrapper {
  border: 1px solid var(--brand-stone);
  border-radius: 0.5rem;
  background: #ffffff;
  overflow: hidden;
}

.signature-wrapper:focus-within {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.12);
}

.signature-canvas {
  width: 100%;
  height: 150px;
  display: block;
  cursor: crosshair;
  touch-action: none;
}

.signature-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0.375rem 0.75rem;
  border-top: 1px solid var(--brand-stone);
  background: var(--brand-ivory);
}

.signature-clear {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-warm-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: color 0.2s ease;
}

.signature-clear:hover {
  color: var(--brand-gold);
}

/* ---------- Form Sections ---------- */
.form-section {
  border: 1px solid var(--brand-stone);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: #ffffff;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-gold);
}

/* ---------- Expense Grid ---------- */
.expense-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

/* ---------- Partner Card ---------- */
.partner-card {
  background: #ffffff;
  border: 1px solid var(--brand-stone);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.partner-card:hover {
  border-color: var(--brand-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.06);
}

.partner-card-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-black);
  margin-bottom: 0.375rem;
}

.partner-card-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-warm-gray);
}

/* ---------- Give / Donation Card ---------- */
.give-card {
  background: #ffffff;
  border: 1px solid var(--brand-stone);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.give-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 20, 25, 0.08);
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  footer { display: none; }
  .hero-premium,
  .page-hero-premium {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
}
