/* ======================================================
   Chucky's Fight — styles.css
   Bold + sporty redesign. Dark hero, condensed display
   type, blue/red accent system inspired by the logo.
   ====================================================== */

:root {
  --bg-dark: #0a0e27;
  --bg-darker: #060923;
  --bg-mid: #131a47;
  --bg-light: #f7f8fc;
  --bg-card: #ffffff;

  --primary: #2a4fe5;        /* logo blue */
  --primary-700: #1f3bb8;
  --primary-glow: rgba(42,79,229,.45);
  --accent: #e63946;         /* fight red */
  --accent-700: #b3232f;
  --green: #22c55e;
  --gold: #f7d861;

  --text-dark: #0a0e27;
  --text-mid: #3b4263;
  --text-light: #f7f8fc;
  --text-muted: #8a90b3;
  --border: rgba(10,14,39,.08);
  --border-dark: rgba(255,255,255,.08);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 6px 24px rgba(10,14,39,.08);
  --shadow-lg: 0 24px 60px rgba(10,14,39,.18);

  --container: 1180px;

  --font-display: "Anton", "Impact", "Bebas Neue", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: .01em;
  line-height: 1;
  margin: 0 0 .4em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1rem; letter-spacing: .12em; }

p { margin: 0 0 1em; }

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

.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

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

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head--center { margin: 0 auto 56px; text-align: center; }
.section-sub { color: var(--text-mid); font-size: 1.1rem; max-width: 56ch; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(230,57,70,.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-700); color: #fff; box-shadow: 0 12px 28px rgba(230,57,70,.45); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; border-color: #fff; }

/* In light sections, ghost goes dark */
.story .btn-ghost,
.plunge .btn-ghost { color: var(--text-dark); border-color: rgba(10,14,39,.2); }
.story .btn-ghost:hover,
.plunge .btn-ghost:hover { background: rgba(10,14,39,.05); color: var(--text-dark); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(10,14,39,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: 8px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 10px 20px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  width: 44px; height: 44px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  margin: 5px auto; transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,14,39,.98);
    backdrop-filter: blur(14px);
    padding: 16px 0;
    transform: translateY(-110%);
    transition: transform .3s ease;
    border-top: 1px solid var(--border-dark);
  }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(42,79,229,.35), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(230,57,70,.25), transparent 60%),
    linear-gradient(180deg, #060923 0%, #0a0e27 60%, #0a0e27 100%);
}
.hero-bg::after {
  /* subtle grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.hero-logo-wrap {
  width: clamp(180px, 22vw, 260px);
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 40px rgba(42,79,229,.35));
  animation: heroLogoIn .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero-logo { width: 100%; height: auto; display: block; animation: heartbeat 2.4s ease-in-out 1.2s infinite; }
.hero-logo-glow { animation: glowPulse 2.4s ease-in-out 1.2s infinite; transform-origin: center; }

@keyframes heroLogoIn {
  0%   { opacity: 0; transform: translateY(20px) scale(.85); filter: blur(8px); }
  60%  { opacity: 1; transform: translateY(0) scale(1.04); filter: blur(0); }
  100% { transform: scale(1); }
}
@keyframes heartbeat {
  0%, 60%, 100% { transform: scale(1); }
  10%  { transform: scale(1.045); }
  20%  { transform: scale(1); }
  30%  { transform: scale(1.025); }
  40%  { transform: scale(1); }
}
@keyframes glowPulse {
  0%, 60%, 100% { opacity: .5; transform: scale(1); }
  10% { opacity: .9; transform: scale(1.08); }
  30% { opacity: .7; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-logo-glow, .hero-logo-wrap { animation: none !important; }
}

.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: .92;
  letter-spacing: .005em;
}
.hero-title .line { display: block; }
.hero-title .line.accent { color: var(--accent); }

.hero-sub {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin: 0 auto 36px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.4); border-radius: 14px;
  display: flex; justify-content: center;
}
.hero-scroll span {
  display: block; width: 3px; height: 8px; background: #fff; margin-top: 6px;
  border-radius: 2px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: .9; }
  60%  { transform: translateY(14px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: .9; }
}

/* ---------- Mission ---------- */
.mission {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.mission-text {
  max-width: 780px; margin: 0 auto 48px;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 12px;
  border-top: 3px solid var(--accent);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 600;
}

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; gap: 8px; }
  .stat { border-top: none; border-left: 3px solid var(--accent); align-items: flex-start; padding: 12px 0 12px 16px; flex-direction: row; gap: 16px; }
  .stat-label { align-self: center; }
}

/* ---------- Services ---------- */
.services { padding: 100px 0; background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card--blue  { border-top-color: var(--primary); }
.service-card--red   { border-top-color: var(--accent);  }
.service-card--green { border-top-color: var(--green);   }
.service-card--dark  { border-top-color: var(--bg-dark); }
.service-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(42,79,229,.08);
  border-radius: 14px;
}
.service-icon img { width: 38px; height: 38px; object-fit: contain; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 15px; line-height: 1.6; margin: 0; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Story ---------- */
.story { padding: 100px 0; background: #fff; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

/* Layered media: family portrait main, founder inset bottom-right */
.story-media-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 40px;
}
.story-media { position: relative; }
.story-media img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* Family portrait — show the WHOLE image. Frame matches its
   natural 5:4 landscape so nothing gets cropped. */
.story-media--main {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-media--main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}
.story-media--inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  max-width: 180px;
  border: 6px solid #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.story-media--inset img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.story-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: .15em;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(230, 57, 70, .35);
}

.story-body p { color: var(--text-mid); font-size: 1.06rem; }

.memorial {
  border-left: 4px solid var(--primary);
  padding: 4px 0 4px 18px;
  margin: 0 0 28px;
}
.memorial-line {
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0;
}

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 36px; }
  .story-media-stack { padding-bottom: 40px; padding-right: 30px; }
  .story-media--inset { width: 32%; max-width: 140px; }
}

/* ---------- Plunge ---------- */
.plunge {
  padding: 100px 0;
  background: linear-gradient(135deg, #eaf1ff 0%, #f7f8fc 100%);
  position: relative;
  overflow: hidden;
}
.plunge::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,79,229,.12), transparent 70%);
}
.plunge-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.plunge-body p { color: var(--text-mid); font-size: 1.06rem; }
.plunge-quote {
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 18px;
  font-style: italic;
  color: var(--text-dark) !important;
  font-size: 1.1rem !important;
  margin: 24px 0 28px !important;
}
.plunge-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.plunge-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) { .plunge-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Stories ---------- */
.stories {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card-media {
  aspect-ratio: 4 / 3;
  background: #0a0e27;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.story-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.story-card-tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(42, 79, 229, .1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.story-card-tag--accent {
  color: var(--accent);
  background: rgba(230, 57, 70, .1);
}
.story-card-tag--light {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .15);
}
.story-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: .015em;
}
.story-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.story-card-quote {
  margin: 0;
  border-left: 3px solid var(--primary);
  padding: 4px 0 4px 14px;
  font-style: italic;
  color: var(--text-dark);
  font-size: 15px;
}
.story-card-quote cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-top: 8px;
}
.story-card-link {
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}
.story-card-link:hover { color: var(--accent-700); }

.story-card--cta {
  background: linear-gradient(135deg, #0a0e27 0%, #131a47 100%);
  color: #fff;
}
.story-card--cta h3 { color: #fff; }
.story-card--cta p { color: rgba(255, 255, 255, .75); }
.story-card-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.story-card--cta .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.story-card--cta .btn-ghost:hover { background: rgba(255, 255, 255, .08); }

@media (max-width: 1024px) {
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .story-card--cta { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .stories-grid { grid-template-columns: 1fr; }
  .story-card--cta { grid-column: auto; }
}

/* ---------- Social ---------- */
.social { padding: 100px 0; background: var(--bg-light); }
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
}
.social-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.social-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
}
.social-card-head h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--text-dark);
  flex: 1;
  margin: 0;
}
.social-card-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}
.social-embed {
  padding: 16px;
  display: flex; justify-content: center;
  min-height: 500px;
}
.social-embed .fb-page,
.social-embed iframe { max-width: 100%; }

.yt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.yt-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ---------- Team ---------- */
.team { padding: 100px 0; background: #fff; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.team-card {
  margin: 0;
  text-align: center;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(10,14,39,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover img { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 30px rgba(10,14,39,.18); }
.team-card figcaption {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.team-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.team-card figcaption span {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.team-social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(42, 79, 229, .08);
  color: var(--primary);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.team-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.team-social a[title="UFC profile"] {
  background: rgba(230, 57, 70, .1);
  color: var(--accent);
}
.team-social a[title="UFC profile"]:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(42,79,229,.2), transparent 60%),
    radial-gradient(700px 350px at 20% 100%, rgba(230,57,70,.18), transparent 60%);
}
.testimonials .container { position: relative; }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--accent);
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  color: var(--accent);
  opacity: .25;
}
.quote p { font-size: 1.02rem; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.quote cite { font-style: normal; font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 1024px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Donate ---------- */
.donate {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.donate-sub {
  max-width: 640px; margin: 0 auto 48px;
  color: var(--text-mid);
  font-size: 1.08rem;
}
.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.donate-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 32px 28px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: var(--text-dark);
}
.donate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); color: var(--text-dark); }
.donate-card strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: .02em;
}
.donate-card span { color: var(--text-mid); font-size: 14px; line-height: 1.5; }
.donate-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 4px;
}
.donate-card--primary { background: linear-gradient(135deg, #2a4fe5, #1f3bb8); color: #fff; }
.donate-card--primary span { color: rgba(255,255,255,.8); }
.donate-card--primary .donate-card-icon { background: var(--accent); }
.donate-card--primary:hover { color: #fff; }

@media (max-width: 900px) { .donate-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-body p { color: var(--text-mid); font-size: 1.06rem; }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700;
}
.contact-list a { font-size: 1.05rem; color: var(--text-dark); font-weight: 600; }
.contact-list a:hover { color: var(--primary); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: 12px; color: var(--text-muted); margin: 0; text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-success {
  background: rgba(34,197,94,.12);
  color: #166534;
  border: 1px solid rgba(34,197,94,.35);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 26ch; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  padding: 4px 0;
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
