/* ==========================================================================
   Universal Fundraising Organization Inc — homepage styles
   Layout reference: charity template (top bar, white header, B&W hero with
   colored geographic overlay, icon categories, countdown, causes, green
   donation band, volunteers, why-us, news, dark navy footer).
   ========================================================================== */

:root {
  --coral: #F15B43;
  --coral-dark: #D94A33;
  --navy: #263B5C;
  --teal: #65C9BB;
  --teal-dark: #4FB3A5;
  --green: #5FB35B;
  --green-bg: #59AE58;
  --green-dark: #3D7D3C;
  --green-track: #7ABE79;
  --blue: #2680F5;
  --orange: #FF9A39;
  --gold: #CBAB65;

  --text: #777777;
  --muted: #A1A1A1;
  --nav: #888F9A;
  --white: #FFFFFF;
  --light: #F9F9F9;
  --cream: #F9F5F2;
  --beige: #D1C8BD;
  --line: #ECECEC;
  --social-bg: #EBEBEB;

  --footer: #111C2D;
  --footer-card: #0B1523;
  --footer-soft: #1C293D;
  --footer-text: #A2AEC1;

  --font: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --container: 1320px;
  --gutter: 15px;
  --section: 120px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 40px rgba(38, 59, 92, .07);
  --shadow-card: 0 12px 34px rgba(38, 59, 92, .08);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --hands: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cdefs%3E%3Cg id='h'%3E%3Cellipse cx='30' cy='48' rx='15' ry='17'/%3E%3Crect x='15' y='16' width='7' height='30' rx='3.5'/%3E%3Crect x='23.5' y='9' width='7' height='36' rx='3.5'/%3E%3Crect x='32' y='11' width='7' height='34' rx='3.5'/%3E%3Crect x='40' y='19' width='6.5' height='27' rx='3.2'/%3E%3Crect x='6' y='40' width='7' height='22' rx='3.5' transform='rotate(-45 9.5 51)'/%3E%3C/g%3E%3C/defs%3E%3Cg fill='%23000' fill-opacity='.075'%3E%3Cuse href='%23h' transform='translate(14 8) rotate(-18 30 40)'/%3E%3Cuse href='%23h' transform='translate(150 26) rotate(24 30 40) scale(.8)'/%3E%3Cuse href='%23h' transform='translate(46 140) rotate(165 30 40) scale(.9)'/%3E%3Cuse href='%23h' transform='translate(168 150) rotate(-38 30 40) scale(1.1)'/%3E%3Cuse href='%23h' transform='translate(100 84) rotate(95 30 40) scale(.6)'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease); }
button, input, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 700; line-height: 1.2; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 18px; background: var(--coral); color: #fff; border-radius: 6px; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.bg-light { background: var(--light); }
.center { text-align: center; }

/* ---------- Typography helpers ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--coral); font-size: 18px; font-weight: 400; }
.eyebrow svg { width: 20px; height: 20px; }
.section-title { font-size: clamp(38px, 4.4vw, 64px); letter-spacing: -.5px; line-height: 1.15; }
.section-head { margin-bottom: 50px; }
.lead { font-size: 18px; line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 0 42px; border: 0; border-radius: var(--radius-pill);
  font-size: 17px; font-weight: 700; line-height: 1; color: #fff; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .14); }
.btn-coral { background: var(--coral); } .btn-coral:hover { background: var(--coral-dark); }
.btn-navy { background: var(--navy); } .btn-navy:hover { background: #1B2D49; }
.btn-teal { background: var(--teal); } .btn-teal:hover { background: var(--teal-dark); }
.btn-green { background: var(--green); } .btn-green:hover { background: #4F9F4B; }
.btn-green-dark { background: var(--green-dark); } .btn-green-dark:hover { background: #336B32; }
.btn-sm { min-height: 50px; padding: 0 34px; font-size: 16px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #C5C5C5; font-size: 15px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 50px; }
.topbar-info { display: flex; align-items: center; flex-wrap: wrap; }
.topbar-info li { display: flex; align-items: center; gap: 9px; padding: 0 22px; border-left: 1px solid rgba(255, 255, 255, .15); }
.topbar-info li:first-child { padding-left: 0; border-left: 0; }
.topbar-info svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; }
.topbar-info a:hover { color: #fff; }
.topbar-social { display: flex; align-self: stretch; }
.topbar-social a { display: grid; place-items: center; width: 52px; border-left: 1px solid rgba(255, 255, 255, .1); color: #fff; }
.topbar-social a:last-child { border-right: 1px solid rgba(255, 255, 255, .1); }
.topbar-social a:hover { background: var(--coral); }
.topbar-social svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; transition: box-shadow .3s var(--ease); }
.site-header.is-stuck { box-shadow: 0 6px 30px rgba(38, 59, 92, .1); }
.site-header .container { display: flex; align-items: center; gap: 30px; min-height: 107px; transition: min-height .3s var(--ease); }
.site-header.is-stuck .container { min-height: 86px; }
.brand img { width: 238px; height: auto; }
.main-nav { margin: 0 auto; }
.main-nav ul { display: flex; gap: 8px; }
.main-nav a { display: block; padding: 10px 20px; color: var(--nav); font-size: 17px; font-weight: 500; }
.main-nav a:hover, .main-nav a.is-active { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 30px; }
.menu-toggle { display: grid; gap: 5px; width: 30px; padding: 6px 2px; background: none; border: 0; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Off-canvas panel ---------- */
.offcanvas { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.offcanvas.is-open { visibility: visible; }
.offcanvas-backdrop { position: absolute; inset: 0; background: rgba(17, 28, 45, .6); opacity: 0; transition: opacity .35s var(--ease); }
.offcanvas.is-open .offcanvas-backdrop { opacity: 1; }
.offcanvas-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 90vw); overflow-y: auto;
  padding: 40px 38px; background: #fff; transform: translateX(100%); transition: transform .4s var(--ease);
}
.offcanvas.is-open .offcanvas-panel { transform: none; }
.offcanvas-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--light); color: var(--navy); font-size: 26px; line-height: 1; }
.offcanvas-panel .brand img { width: 220px; margin-bottom: 26px; }
.offcanvas-nav { display: none; margin-bottom: 26px; }
.offcanvas-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 500; }
.offcanvas-panel h3 { margin: 26px 0 12px; font-size: 20px; }
.offcanvas-contact li { display: flex; gap: 10px; margin-bottom: 10px; }
.offcanvas-contact svg { width: 18px; height: 18px; margin-top: 4px; color: var(--coral); flex-shrink: 0; }
.offcanvas-panel .btn { margin-top: 22px; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; display: grid; place-items: center; min-height: 733px; overflow: hidden; background: #2b2b2b; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(1) contrast(1.05) brightness(.82); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: rgba(20, 20, 20, .38); }
.hero-globe { position: absolute; left: 50%; top: 50%; z-index: -1; width: min(760px, 108vh, 96vw); aspect-ratio: 1; transform: translate(-50%, -50%); mix-blend-mode: multiply; animation: globe-drift 40s linear infinite; }
.hero-globe svg { width: 100%; height: 100%; }
@keyframes globe-drift { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-content { max-width: 900px; padding: 100px var(--gutter); text-align: center; color: #fff; }
.hero-tags { display: flex; justify-content: center; gap: 0; margin-bottom: 14px; font-size: 19px; font-weight: 500; }
.hero-tags li { padding: 0 26px; border-left: 1px solid rgba(255, 255, 255, .5); line-height: 1; }
.hero-tags li:first-child { border-left: 0; }
.hero h1 { color: #fff; font-size: clamp(46px, 6.9vw, 92px); letter-spacing: -1px; line-height: 1.08; text-shadow: 0 4px 30px rgba(0, 0, 0, .25); }
.hero-text { max-width: 560px; margin: 26px auto 38px; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.6; color: #fff; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }

/* ---------- Focus areas (icon circles) ---------- */
.focus { padding: 118px 0 120px; background: var(--light); }
.focus-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; text-align: center; }
.focus-item { display: flex; flex-direction: column; align-items: center; }
.focus-icon { display: grid; place-items: center; width: 165px; height: 165px; margin-bottom: 30px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.focus-icon svg { width: 88px; height: 88px; }
.focus-item:hover .focus-icon { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(38, 59, 92, .12); }
.focus-item h3 { font-size: 22px; font-weight: 700; }
.focus-item p { margin: 8px 0 0; font-size: 15px; }

/* ---------- Countdown banner ---------- */
.countdown-wrap { position: relative; background: linear-gradient(to bottom, var(--light) 0 40%, #fff 40% 100%); }
.countdown { display: grid; grid-template-columns: 313px 1fr; min-height: 200px; background-color: var(--blue); background-image: var(--hands); color: #fff; overflow: hidden; }
.countdown-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; }
.countdown-body { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 60px 30px 30px; }
.countdown-body h2 { color: #fff; font-size: 26px; }
.countdown-body p { margin: 6px 0 0; color: #A8CCFB; font-size: 17px; }
.timer { display: flex; }
.timer div { min-width: 132px; padding: 4px 10px; text-align: center; border-left: 1px solid rgba(255, 255, 255, .22); }
.timer strong { display: block; font-size: 46px; font-weight: 700; line-height: 1.05; font-variant-numeric: tabular-nums; }
.timer span { font-size: 17px; color: rgba(255, 255, 255, .8); }

/* ---------- About ---------- */
.about .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 90px; align-items: center; }
.about h2 { margin-bottom: 26px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 34px 0 40px; }
.about-points li { display: flex; gap: 16px; }
.about-points .ico { display: grid; place-items: center; flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; background: rgba(241, 91, 67, .1); color: var(--coral); }
.about-points li:nth-child(2) .ico { background: rgba(101, 201, 187, .15); color: var(--teal-dark); }
.about-points svg { width: 28px; height: 28px; }
.about-points h3 { font-size: 19px; margin-bottom: 4px; }
.about-points p { margin: 0; font-size: 15px; line-height: 1.6; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 557 / 600; object-fit: cover; object-position: 30% 50%; filter: grayscale(1); transition: filter .8s var(--ease); }
.about-media:hover img { filter: grayscale(0); }
.about-badge { position: absolute; left: -46px; bottom: 46px; display: grid; place-items: center; width: 150px; height: 150px; border: 8px solid #fff; border-radius: 50%; background: var(--coral); color: #fff; text-align: center; line-height: 1.1; box-shadow: var(--shadow-card); }
.about-badge strong { display: block; font-size: 36px; }
.about-badge span { font-size: 14px; }

/* ---------- Causes ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin-bottom: 40px; }
.filters button { min-height: 58px; padding: 0 44px; border: 0; border-radius: var(--radius-pill); background: #fff; color: var(--text); font-size: 17px; box-shadow: var(--shadow-soft); transition: background-color .25s var(--ease), color .25s var(--ease); }
.filters button:hover { color: var(--navy); }
.filters button.is-active { background: var(--navy); color: #fff; }
.cause-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cause-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 24px rgba(38, 59, 92, .05); transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .35s var(--ease); }
.cause-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cause-card[hidden] { display: none; }
.cause-media { position: relative; height: 274px; }
.cause-media > img { width: 100%; height: 100%; object-fit: cover; }
.cause-badge { position: absolute; left: 38px; bottom: 0; display: flex; flex-direction: column; align-items: center; width: 98px; padding: 14px 0 12px; border-radius: 49px 49px 0 0; color: #fff; }
.cause-badge.green { background: var(--green); } .cause-badge.coral { background: var(--coral); } .cause-badge.teal { background: var(--teal); }
.ring { position: relative; width: 70px; height: 70px; }
.ring svg { width: 70px; height: 70px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 4; }
.ring .track { stroke: rgba(255, 255, 255, .3); }
.ring .bar { stroke: #fff; stroke-linecap: round; stroke-dasharray: 188.5; stroke-dashoffset: 188.5; transition: stroke-dashoffset 1.4s var(--ease); }
.ring b { position: absolute; inset: 0; display: grid; place-items: center; font-size: 16px; font-weight: 400; }
.cause-badge small { margin-top: 6px; font-size: 16px; font-weight: 500; }
.cause-body { padding: 38px 38px 40px; }
.cause-body h3 { margin-bottom: 26px; font-size: 25px; font-weight: 500; line-height: 1.36; }
.cause-body h3 a:hover, .cause-card.featured h3 { color: var(--coral); }
.cause-stats { display: flex; justify-content: space-between; gap: 12px; }
.cause-stats span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 15px; }
.cause-stats svg { width: 16px; height: 16px; }
.cause-stats strong { display: block; margin-top: 2px; font-size: 19px; font-weight: 700; }
.stat-goal strong { color: var(--coral); } .stat-raised strong { color: var(--teal); } .stat-togo strong { color: var(--orange); }
.causes-note { margin: 30px 0 0; text-align: center; font-size: 14px; color: var(--muted); }

/* ---------- Donation band ---------- */
.donate { position: relative; padding: 118px 0; background-color: var(--green-bg); background-image: var(--hands); color: #fff; }
.donate .container { display: grid; grid-template-columns: 426px 1fr; gap: 98px; align-items: center; }
.donate h2 { color: #fff; font-size: clamp(40px, 4.4vw, 64px); }
.donate-sub { margin: 10px 0 30px; font-size: 18px; line-height: 1.6; }
.raised { margin-bottom: 14px; font-size: 18px; }
.raised strong { font-size: 30px; margin-left: 4px; }
.progress { height: 14px; border-radius: var(--radius-pill); background: var(--green-track); overflow: hidden; }
.progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--green-dark); transition: width 1.6s var(--ease); }
.progress-meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 14px; opacity: .9; }
.amount-presets { display: flex; gap: 10px; margin: 34px 0 14px; }
.amount-presets button { flex: 1; min-height: 42px; border: 1px solid rgba(255, 255, 255, .7); border-radius: var(--radius-pill); background: transparent; color: #fff; font-weight: 500; }
.amount-presets button.is-active, .amount-presets button:hover { background: #fff; color: var(--green-dark); }
.amount-field { display: flex; align-items: center; height: 58px; border: 2px solid rgba(255, 255, 255, .9); border-radius: var(--radius-pill); overflow: hidden; }
.amount-field input { flex: 1; min-width: 0; height: 100%; padding: 0 34px; border: 0; background: transparent; color: #fff; font-size: 18px; font-weight: 700; }
.amount-field input::placeholder { color: rgba(255, 255, 255, .7); }
.amount-field input:focus { outline: none; }
.amount-field:focus-within { border-color: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .3); }
.currency-pill { display: grid; place-items: center; height: 100%; padding: 0 30px; border-radius: var(--radius-pill); background: var(--green-dark); color: #fff; font-weight: 500; }
.field-note { margin: 12px 0 26px; font-size: 15px; }
.donate-gallery { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 128px; }
.donate-gallery img { width: 100%; aspect-ratio: 343 / 389; object-fit: cover; border-radius: 8px; box-shadow: 0 20px 50px rgba(0, 0, 0, .18); }
.donate-gallery .g-small { position: absolute; left: 50%; top: 25%; width: 195px; aspect-ratio: 1; transform: translateX(-50%); border: 0; object-position: 52% 25%; z-index: 1; }

/* ---------- Supporter / values strip ---------- */
.values-strip { padding: 60px 0; background: var(--cream); }
.values-strip ul { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center; justify-items: center; }
.values-strip li { color: var(--beige); transition: color .3s var(--ease); }
.values-strip li:hover { color: var(--coral); }
.values-strip svg { width: 100px; height: 90px; }

/* ---------- Volunteers ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { padding: 39px 39px 0; background: var(--light); text-align: center; transition: background-color .3s var(--ease); }
.team-card:hover { background: #F2F4F7; }
.team-card img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.team-card .role { display: block; margin: 28px 0 6px; color: var(--teal); font-size: 16px; }
.team-card h3 { font-size: 25px; }
.team-card p { margin: 10px 0 0; font-size: 15px; line-height: 1.6; }
.team-social { display: flex; justify-content: center; gap: 10px; padding: 26px 0 0; transform: translateY(0); }
.team-social a { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 4px 4px 0 0; background: var(--social-bg); color: var(--navy); }
.team-social a:hover { background: var(--coral); color: #fff; }
.team-social svg { width: 17px; height: 17px; }

/* ---------- Why choose us ---------- */
.why { position: relative; overflow: hidden; background: #FCFCFC; }
.why-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; z-index: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; filter: grayscale(1) brightness(1.08) contrast(.95); }
.why-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #FCFCFC 0%, rgba(252, 252, 252, .85) 28%, rgba(252, 252, 252, .1) 70%, rgba(252, 252, 252, 0) 100%); }
.why .container { position: relative; z-index: 1; }
.why-content { max-width: 640px; }
.why h2 { margin-bottom: 24px; }
.why-list { margin: 36px 0 42px; }
.why-list li { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list .num { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; }
.why-list li:nth-child(2) .num { background: var(--coral); }
.why-list li:nth-child(3) .num { background: var(--teal); }
.why-list h3 { font-size: 21px; margin-bottom: 4px; }
.why-list p { margin: 0; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.news-card { position: relative; margin: 0 20px 40px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); overflow: hidden; transition: transform .35s var(--ease); }
.news-card:hover { transform: translateY(-6px); }
.news-grid > .news-card:not(:nth-child(3n + 1))::before { content: ''; position: absolute; left: -21px; top: 30px; bottom: 30px; width: 1px; background: var(--line); }
.news-grid > .news-card { overflow: visible; }
.news-media { display: block; height: 195px; overflow: hidden; border-radius: 12px 12px 0 0; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.06); }
.news-body { padding: 38px 40px 40px; }
.news-cat { display: block; margin-bottom: 10px; font-size: 15px; }
.news-body h3 { margin-bottom: 26px; font-size: 20px; line-height: 1.5; }
.news-body h3 a:hover { color: var(--coral); }
.news-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 16px; }
.news-meta span { display: inline-flex; align-items: center; gap: 8px; }
.news-meta svg { width: 17px; height: 17px; }
.news-meta .m-user svg { color: #F16D55; } .news-meta .m-date svg { color: var(--teal); }
.news-meta b { color: #BBB; font-weight: 400; }
.news-card.is-extra { display: none; }
.news-grid.show-all .news-card.is-extra { display: block; }
.news-more { margin-top: 10px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { padding-top: 100px; background: var(--footer); color: var(--footer-text); font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 1.55fr .9fr 1.2fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-brand img { width: 250px; height: auto; margin-bottom: 36px; }
.footer-brand p { max-width: 380px; font-size: 16px; line-height: 1.75; }
.footer-social { display: flex; gap: 14px; margin-top: 30px; }
.footer-social a { display: grid; place-items: center; width: 49px; height: 49px; border-radius: 50%; background: var(--footer-soft); color: #fff; }
.footer-social a:hover { background: var(--coral); }
.footer-social svg { width: 17px; height: 17px; }
.site-footer h3 { display: inline-block; margin-bottom: 42px; padding-bottom: 10px; color: #fff; font-size: 21px; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.footer-links li { margin-bottom: 18px; }
.footer-links a:hover, .footer-link-btn:hover { color: #fff; }
.footer-link-btn { padding: 0; border: 0; background: none; color: inherit; font-size: 15px; text-align: left; }
.footer-links + .btn { margin-top: 8px; }
.footer-contact li { margin-bottom: 18px; line-height: 1.75; }
.footer-contact b { color: #fff; font-weight: 700; }
.footer-contact a:hover { color: #fff; }
.footer-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 40px; }
.cta-card { position: relative; display: flex; align-items: center; gap: 26px; min-height: 120px; padding: 20px 34px 20px 170px; border-radius: 6px; background: var(--footer-card); }
.cta-card img { position: absolute; left: 24px; bottom: 16px; width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--footer-soft); }
.cta-card div { flex: 1; }
.cta-card h4 { margin-bottom: 4px; color: #fff; font-size: 19px; }
.cta-card p { margin: 0; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 60px; padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 14px; }
.footer-bottom button { padding: 0; border: 0; background: none; color: var(--footer-text); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom button:hover { color: #fff; }

/* ---------- Back to top (progress ring) ---------- */
.to-top { position: fixed; right: 40px; bottom: 40px; z-index: 40; display: grid; place-items: center; width: 52px; height: 52px; padding: 0; border: 0; border-radius: 50%; background: #fff; color: var(--teal); box-shadow: 0 8px 24px rgba(0, 0, 0, .12); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s var(--ease); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg.ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top .ring-track { fill: none; stroke: rgba(241, 91, 67, .15); stroke-width: 2; }
.to-top .ring-bar { fill: none; stroke: var(--coral); stroke-width: 2; stroke-dasharray: 150.8; stroke-dashoffset: 150.8; }
.to-top .arrow { width: 20px; height: 20px; }

/* ---------- Modal ---------- */
dialog { width: min(520px, calc(100% - 32px)); padding: 46px 40px 38px; border: 0; border-radius: 12px; color: var(--text); box-shadow: 0 30px 80px rgba(0, 0, 0, .3); }
dialog::backdrop { background: rgba(17, 28, 45, .65); }
dialog h2 { margin-bottom: 14px; font-size: 30px; }
dialog .btn { width: 100%; margin-top: 10px; }
dialog .small { margin-top: 16px; font-size: 13px; color: var(--muted); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--light); color: var(--navy); font-size: 24px; line-height: 1; }
.gift-summary { margin: 18px 0; padding: 18px 20px; border-radius: 8px; background: var(--light); color: var(--navy); font-size: 20px; font-weight: 700; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1399px) {
  .brand img { width: 210px; }
  .main-nav a { padding: 10px 11px; font-size: 16px; }
  .donate .container { grid-template-columns: 400px 1fr; gap: 60px; }
  .donate-gallery { gap: 90px; }
  .team-card { padding: 28px 28px 0; }
  .news-body { padding: 30px 30px 34px; }
}
@media (max-width: 1199px) {
  :root { --section: 96px; }
  .main-nav, .header-actions .btn { display: none; }
  .header-actions { margin-left: auto; }
  .offcanvas-nav { display: block; }
  .topbar-info li.hide-lg { display: none; }
  .focus-list { grid-template-columns: repeat(3, 1fr); row-gap: 50px; }
  .countdown { grid-template-columns: 240px 1fr; }
  .countdown-body { flex-direction: column; align-items: flex-start; padding: 30px; }
  .timer div { min-width: 96px; }
  .about .container { gap: 60px; }
  .about-badge { left: 20px; }
  .cause-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid > .news-card::before { display: none; }
  .donate .container { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-strip ul { grid-template-columns: repeat(3, 1fr); }
  .why-bg { width: 100%; opacity: .35; }
}
@media (max-width: 991px) {
  .topbar { display: none; }
  .about .container { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-cta { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --section: 72px; }
  body { font-size: 15px; }
  .site-header .container { min-height: 80px; }
  .brand img { width: 180px; }
  .hero { min-height: 640px; }
  .hero-tags { font-size: 15px; }
  .hero-tags li { padding: 0 14px; }
  .btn { min-height: 52px; padding: 0 30px; font-size: 16px; }
  .focus { padding: 72px 0; }
  .focus-list { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .focus-icon { width: 128px; height: 128px; margin-bottom: 20px; }
  .focus-icon svg { width: 64px; height: 64px; }
  .focus-item h3 { font-size: 18px; }
  .countdown { grid-template-columns: 1fr; }
  .countdown-media img { height: 200px; }
  .timer { width: 100%; }
  .timer div { flex: 1; min-width: 0; padding: 4px; }
  .timer div:first-child { border-left: 0; }
  .timer strong { font-size: 34px; }
  .timer span { font-size: 14px; }
  .about-points { grid-template-columns: 1fr; }
  .about-badge { width: 118px; height: 118px; border-width: 6px; bottom: 20px; }
  .about-badge strong { font-size: 28px; }
  .filters { gap: 12px; }
  .filters button { min-height: 46px; padding: 0 22px; font-size: 15px; }
  .cause-grid, .news-grid, .team-grid { grid-template-columns: 1fr; }
  .cause-body { padding: 30px 26px 32px; }
  .cause-body h3 { font-size: 22px; }
  .news-card { margin: 0 0 30px; }
  .donate { padding: 72px 0; }
  .donate-gallery { gap: 16px; }
  .donate-gallery .g-small { width: 44%; top: 28%; }
  .values-strip ul { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
  .values-strip svg { width: 70px; height: 64px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .site-footer h3 { margin-bottom: 24px; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 90px 24px 26px; margin-top: 40px; }
  .cta-card img { left: 24px; top: -50px; bottom: auto; width: 110px; height: 110px; }
  .to-top { right: 18px; bottom: 18px; }
  dialog { padding: 44px 24px 30px; }
}
/* ---------- The 1 Field (campaign donation page) ---------- */
.film {
  position: relative; overflow: hidden; color: #C9D2E3; background-color: #141A2D;
  background-image:
    radial-gradient(ellipse at 50% -5%, rgba(38, 128, 245, .30), transparent 58%),
    radial-gradient(ellipse at 90% 105%, rgba(241, 91, 67, .16), transparent 50%),
    radial-gradient(1.6px 1.6px at 40px 60px, rgba(255, 255, 255, .55) 50%, transparent 55%),
    radial-gradient(1.1px 1.1px at 130px 20px, rgba(255, 255, 255, .45) 50%, transparent 55%),
    radial-gradient(1px 1px at 90px 150px, rgba(255, 255, 255, .35) 50%, transparent 55%),
    radial-gradient(1.6px 1.6px at 170px 110px, rgba(203, 171, 101, .6) 50%, transparent 55%);
  background-size: 100% 100%, 100% 100%, 210px 210px, 190px 190px, 230px 230px, 260px 260px;
}
.film .section-title { color: #fff; }
.film-lead { max-width: 760px; margin: 22px auto 0; font-size: 19px; line-height: 1.75; color: #C9D2E3; }
.film-feature { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; margin-bottom: 96px; }
.film-poster { margin: 0; padding: 10px; border-radius: 14px; background: linear-gradient(135deg, rgba(203, 171, 101, .75), rgba(38, 59, 92, .6) 45%, rgba(101, 201, 187, .6)); box-shadow: 0 30px 80px rgba(0, 0, 0, .45); }
.film-poster img { width: 100%; height: auto; border-radius: 8px; }
.film-copy h3 { margin-bottom: 16px; color: #fff; font-size: 28px; line-height: 1.3; }
.film-copy p { color: #A2AEC1; }
.film-rate { display: flex; align-items: center; gap: 18px; margin: 24px 0; padding: 18px 22px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px; background: rgba(255, 255, 255, .05); }
.film-rate strong { color: var(--gold); font-size: 40px; line-height: 1; }
.film-rate span { color: #C9D2E3; font-size: 15px; line-height: 1.5; }
.festivals { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 32px; }
.festivals li { padding: 8px 16px; border: 1px solid rgba(203, 171, 101, .35); border-radius: var(--radius-pill); color: #C9D2E3; font-size: 13px; line-height: 1.35; }
.festivals b { display: block; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tiers-title { margin-bottom: 40px; color: #fff; font-size: 34px; text-align: center; }
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: stretch; }
.tier {
  --tier: var(--coral); --tier-ink: #D94A33; --tier-soft: #FDECE9;
  position: relative; display: flex; flex-direction: column; padding: 40px 30px 34px;
  border-top: 5px solid var(--tier); border-radius: 12px; background: #fff; color: var(--text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tier:hover { transform: translateY(-8px); }
.tier-silver { --tier: #9AA6B8; --tier-ink: #5F6B7E; --tier-soft: #EEF1F5; }
.tier-gold { --tier: var(--gold); --tier-ink: #93722C; --tier-soft: #F8F1E1; transform: translateY(-14px); box-shadow: 0 30px 70px rgba(203, 171, 101, .28); }
.tier-gold:hover { transform: translateY(-20px); }
.tier-diamond { --tier: var(--teal); --tier-ink: #378C80; --tier-soft: #E6F6F3; }
.tier-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 22px; border-radius: 50%; background: var(--tier-soft); color: var(--tier-ink); }
.tier-icon svg { width: 30px; height: 30px; }
.tier-label { margin: 0 0 6px; color: var(--tier-ink); font-size: 14px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.tier-price { margin: 0 0 14px; color: var(--navy); font-size: 44px; font-weight: 700; line-height: 1.1; }
.tier-custom .tier-price { font-size: 36px; }
.tier-reach { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.6; }
.tier-reach strong { color: var(--navy); }
.tier-perks { margin-bottom: 28px; }
.tier-perks li { position: relative; margin-bottom: 12px; padding-left: 28px; font-size: 15px; line-height: 1.55; }
.tier-perks li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; background: var(--tier-ink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 12.5 4.2 4L19 7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 12.5 4.2 4L19 7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tier-form, .tier > .btn { margin-top: auto; }
.tier .btn { width: 100%; }
.btn-silver { background: #5F6B7E; } .btn-silver:hover { background: #4E5869; }
.btn-gold { background: var(--gold); color: #1E1A12; } .btn-gold:hover { background: #B8974F; }
.tier-contact { margin: 12px 0 0; font-size: 13px; text-align: center; }
.tier-contact a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.film-note { display: flex; align-items: center; gap: 22px; max-width: 860px; margin: 64px auto 0; padding: 22px 28px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; background: rgba(255, 255, 255, .04); }
.film-note img { flex-shrink: 0; width: 64px; height: 64px; }
.film-note p { margin: 0; color: #A2AEC1; font-size: 15px; line-height: 1.65; }
.film-note strong { color: #fff; font-weight: 500; }
@media (max-width: 1199px) {
  .film-feature { grid-template-columns: 1fr; gap: 40px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-gold, .tier-gold:hover { transform: none; }
}
@media (max-width: 767px) {
  .film-feature { margin-bottom: 64px; }
  .film-lead { font-size: 17px; }
  .film-copy h3 { font-size: 23px; }
  .tiers-title { font-size: 28px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier { padding: 34px 24px 28px; }
  .tier-price { font-size: 38px; }
  .film-note { flex-direction: column; text-align: center; }
}

/* ---------- Projects ---------- */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.project-card { display: grid; grid-template-columns: 240px 1fr; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 24px rgba(38, 59, 92, .05); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.project-media { min-height: 260px; background: #0F1426; }
.project-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.project-media.logo { display: grid; place-items: center; background: var(--cream); }
.project-media.logo img { width: auto; height: auto; max-width: 70%; object-fit: contain; }
.project-body { padding: 34px 34px 36px; }
.project-body .tag { display: inline-block; margin-bottom: 8px; color: var(--teal-dark); font-size: 15px; font-weight: 500; }
.project-body h3 { margin-bottom: 12px; font-size: 25px; }
.project-body p { font-size: 15px; line-height: 1.7; }

/* ---------- The 1 Field: trailer, credits, links ---------- */
.film-feature { margin-bottom: 56px; }
.trailer { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 8px; background: #000; }
.film-poster .trailer img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; filter: brightness(.82); transition: filter .4s var(--ease), transform .8s var(--ease); }
.trailer:hover img { filter: brightness(.65); transform: scale(1.03); }
.trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 92px; height: 92px; padding: 0; border: 0; border-radius: 50%; background: var(--coral); color: #fff; transform: translate(-50%, -50%); box-shadow: 0 0 0 12px rgba(241, 91, 67, .25); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 18px rgba(241, 91, 67, .2); }
.play-btn svg { width: 38px; height: 38px; margin-left: 5px; }
.film-poster figcaption { margin-top: 10px; color: #A2AEC1; font-size: 13px; text-align: center; }
.film-copy .film-tagline { margin-bottom: 12px; color: var(--gold); font-size: 18px; font-style: italic; }
.film-credits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 22px 0; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .1); border-bottom: 1px solid rgba(255, 255, 255, .1); }
.film-credits dt { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.film-credits dd { margin: 2px 0 0; color: #E3E8F1; font-size: 14px; line-height: 1.5; }
.film-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, .6); background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.film-links { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin: 0 0 90px; padding: 34px 40px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; background: rgba(255, 255, 255, .04); }
.film-links h4 { margin-bottom: 16px; color: #fff; font-size: 19px; }
.film-links ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.film-links ul.lang-list { grid-template-columns: repeat(3, 1fr); }
.film-links a { color: #C9D2E3; font-size: 15px; }
.film-links a:hover { color: var(--gold); }
@media (max-width: 1199px) {
  .projects-grid { grid-template-columns: 1fr; }
  .film-links { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .project-card { grid-template-columns: 1fr; }
  .project-media { min-height: 0; height: 200px; }
  .project-body { padding: 26px 24px 30px; }
  .film-credits, .film-links ul { grid-template-columns: 1fr; }
  .film-links ul.lang-list { grid-template-columns: repeat(2, 1fr); }
  .film-links { margin-bottom: 64px; padding: 26px 22px; }
  .play-btn { width: 72px; height: 72px; }
  .play-btn svg { width: 30px; height: 30px; }
}

/* ---------- The 1 Field page (the1field.html) ---------- */
.film-hero { padding: 110px 0 120px; }
.film-hero .container { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.film-hero h1 { margin: 6px 0 18px; color: #fff; font-size: clamp(38px, 4.6vw, 62px); line-height: 1.12; }
.film-hero .film-lead { margin: 0 0 30px; }
.lang-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 30px; }
.lang-pills > span:first-child { margin-right: 4px; color: #A2AEC1; font-size: 14px; }
.lang-pills a, .lang-pills .soon { padding: 6px 14px; border: 1px solid rgba(255, 255, 255, .25); border-radius: var(--radius-pill); color: #E3E8F1; font-size: 13px; }
.lang-pills a:hover { border-color: var(--gold); color: var(--gold); }
.lang-pills .soon { border-style: dashed; opacity: .6; }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.explore-card { display: flex; flex-direction: column; align-items: center; padding: 42px 34px 38px; border-radius: 12px; background: #fff; text-align: center; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease); }
.explore-card:hover { transform: translateY(-6px); }
.explore-icon { display: grid; place-items: center; width: 84px; height: 84px; margin-bottom: 22px; border-radius: 50%; }
.explore-icon svg { width: 38px; height: 38px; }
.explore-icon.coral { background: #FDECE9; color: var(--coral); }
.explore-icon.teal { background: #E6F6F3; color: #378C80; }
.explore-icon.gold { background: #F8F1E1; color: #93722C; }
.explore-card h3 { margin-bottom: 10px; font-size: 24px; }
.explore-card p { flex: 1; }
.btn-soon { background: #E9ECF1; color: #6F7888; cursor: default; }
.btn-soon:hover { transform: none; box-shadow: none; }
.explore-more { margin: 36px 0 0; text-align: center; }
.explore-more a { margin: 0 10px; color: var(--navy); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; }
.gift { background: var(--cream); }
.gift-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: center; }
.gift .film-actions { margin-top: 28px; }
.gift-stats { display: grid; gap: 20px; }
.gift-stats div { display: flex; align-items: center; gap: 22px; padding: 26px 28px; border-left: 5px solid var(--coral); border-radius: 12px; background: #fff; box-shadow: var(--shadow-soft); }
.gift-stats div:nth-child(2) { border-left-color: var(--teal); }
.gift-stats div:nth-child(3) { border-left-color: var(--green); }
.gift-stats strong { min-width: 124px; color: var(--navy); font-size: 44px; line-height: 1; }
.gift-stats span { font-size: 15px; line-height: 1.55; }
.about-film-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: start; }
.film-support { display: flex; gap: 12px; margin-top: 10px; padding: 18px 20px; border-radius: 10px; background: rgba(241, 91, 67, .08); color: var(--navy); font-weight: 500; }
.film-support svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 3px; color: var(--coral); }
.credits-card { padding: 38px 36px; border-radius: 14px; background: #141A2D; color: #C9D2E3; box-shadow: 0 24px 60px rgba(20, 26, 45, .25); }
.credits-card h3 { margin-bottom: 6px; color: #fff; font-size: 22px; }
.credits-card h4 { margin: 6px 0 8px; color: var(--gold); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.credits-card .subs { margin: 0; font-size: 14px; line-height: 1.7; }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.people-col { padding: 38px 36px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-soft); }
.people-col h3 { margin-bottom: 14px; font-size: 22px; }
.people-col h3:not(:first-child) { margin-top: 30px; }
.people-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.5; }
.people-list li:last-child { border-bottom: 0; }
.people-list b { display: block; color: var(--navy); font-size: 16px; }
.exp-list { padding-left: 20px; list-style: disc; }
.exp-list li { margin-bottom: 12px; font-size: 15px; line-height: 1.65; }
.exp-list li::marker { color: var(--coral); }
.blessing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blessing { display: flex; flex-direction: column; padding: 22px 22px 26px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; background: rgba(255, 255, 255, .05); }
.blessing h3 { margin: 18px 0 4px; color: #fff; font-size: 20px; }
.blessing .role { margin-bottom: 10px; color: var(--gold); font-size: 13px; line-height: 1.5; }
.blessing p:last-child { margin: 0; color: #C9D2E3; font-size: 15px; line-height: 1.6; }
.blessing-video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 10px; background: radial-gradient(circle at 28% 30%, rgba(38, 128, 245, .45), transparent 60%), radial-gradient(circle at 82% 90%, rgba(241, 91, 67, .35), transparent 55%), #0C1122; }
.blessing-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.blessing-video .play-btn { width: 64px; height: 64px; box-shadow: 0 0 0 10px rgba(241, 91, 67, .22); }
.blessing-video .play-btn svg { width: 26px; height: 26px; margin-left: 4px; }
.blessing-quote { display: grid; place-items: center; aspect-ratio: 16 / 9; border-radius: 10px; background: linear-gradient(135deg, rgba(203, 171, 101, .35), rgba(38, 59, 92, .55)); color: var(--gold); font: 700 110px/1 Georgia, serif; }
.tiers-band { background-color: var(--navy); background-image: var(--hands); }
.tiers-band .section-title { color: #fff; }
.tiers-band .film-lead { color: #C9D2E3; }
.thanks-strip { padding: 44px 0; background: var(--cream); }
.thanks-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.thanks-strip p { margin: 0; color: var(--navy); font-size: 17px; }

/* ---------- In-site secure checkout modal ---------- */
dialog.checkout-modal { width: min(780px, calc(100% - 24px)); max-height: 96vh; padding: 26px 26px 18px; }
.checkout-head { display: flex; align-items: center; gap: 16px; margin: 0 44px 16px 0; }
.checkout-head img { flex-shrink: 0; width: 44px; height: 44px; }
.checkout-head .eyebrow { margin: 0 0 2px; font-size: 14px; }
.checkout-head h2 { margin: 0; font-size: 22px; }
.checkout-summary { margin: 4px 0 0; font-size: 14px; }
.checkout-frame-wrap { position: relative; height: min(70vh, 760px); overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.checkout-frame-wrap iframe { position: relative; z-index: 1; width: 100%; height: 100%; border: 0; background: transparent; }
.checkout-loading { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; color: var(--text); font-size: 15px; }
.checkout-loading span { width: 38px; height: 38px; border: 3px solid var(--line); border-top-color: var(--coral); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-loading.is-slow { z-index: 2; padding: 30px; background: #fff; text-align: center; }
.checkout-loading.is-slow p { max-width: 380px; margin: 0 0 16px; color: var(--navy); }
.checkout-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 16px; margin-top: 12px; font-size: 13px; }
.checkout-foot p { display: flex; align-items: center; gap: 8px; margin: 0; }
.checkout-foot svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--green-dark); }
.link-btn { padding: 0; border: 0; background: none; color: var(--navy); font-size: 13px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.sandbox-badge { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: var(--radius-pill); background: #FFF4E5; color: #9A5B00; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }
.checkout-error { color: var(--coral-dark); font-weight: 500; }
.checkout-amount { padding: 24px 6px 8px; text-align: center; }
.co-label { margin-bottom: 16px; color: var(--navy); font-size: 18px; font-weight: 500; }
.co-presets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.co-presets button { min-height: 50px; border: 1px solid #D6DCE5; border-radius: var(--radius-pill); background: #fff; color: var(--navy); font-weight: 700; }
.co-presets button:hover, .co-presets button.is-active { border-color: var(--coral); background: var(--coral); color: #fff; }
.co-field { display: flex; align-items: center; height: 56px; margin: 0 0 18px; padding: 0 22px; border: 1px solid #D6DCE5; border-radius: var(--radius-pill); }
.co-field:focus-within { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(241, 91, 67, .15); }
.co-field span { color: var(--navy); font-size: 18px; font-weight: 700; }
.co-field input { flex: 1; min-width: 0; height: 100%; padding: 0 10px; border: 0; background: transparent; color: var(--navy); font-size: 18px; font-weight: 700; }
.co-field input:focus { outline: none; }
.checkout-amount .btn { width: 100%; }
.checkout-result { padding: 40px 20px 24px; text-align: center; }
.result-icon { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 50%; background: #E8F5E7; color: var(--green-dark); font-size: 38px; font-weight: 700; }
.checkout-result.fail .result-icon { background: #FDECE9; color: var(--coral); }
.checkout-result h3 { margin-bottom: 10px; font-size: 26px; }
.checkout-result .btn { margin-top: 12px; }
.thank-you-body .film-actions { margin-top: 26px; }
@media (max-width: 480px) { .co-presets { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 1199px) {
  .film-hero .container, .gift-grid, .about-film-grid { grid-template-columns: 1fr; }
  .explore-grid, .blessing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .people-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .film-hero { padding: 70px 0 80px; }
  .explore-grid, .blessing-grid { grid-template-columns: 1fr; }
  .gift-stats strong { min-width: 88px; font-size: 34px; }
  .people-col, .credits-card { padding: 28px 22px; }
  .thanks-strip .container { flex-direction: column; text-align: center; }
  dialog.checkout-modal { padding: 20px 14px 14px; }
  .checkout-frame-wrap { height: 72vh; }
}

/* ---------- Footer credit links ---------- */
.footer-bottom a { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom a:hover { color: #fff; }
.made-by .heart { display: inline-block; color: var(--coral); font-size: 16px; animation: heartbeat 1.6s ease-in-out infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.25); } 30% { transform: scale(1); } }

/* ---------- Legal pages (privacy policy) ---------- */
.legal-actions { display: flex; gap: 14px; margin-left: auto; }
.legal-actions .btn { display: inline-flex; }
.legal-hero { padding: 90px 0 76px; background-color: var(--navy); background-image: var(--hands); color: #C9D2E3; }
.legal-hero h1 { margin: 4px 0 10px; color: #fff; font-size: clamp(40px, 5vw, 64px); }
.legal-hero p:last-child { margin: 0; font-size: 17px; }
.legal-body { max-width: 890px; margin: 0 auto; padding: 80px var(--gutter) 100px; }
.legal-body h2 { margin: 46px 0 14px; font-size: 26px; }
.legal-body ul { margin: 0 0 1em; padding-left: 22px; list-style: disc; }
.legal-body li { margin-bottom: 10px; }
.legal-body li strong { color: var(--navy); }
.legal-body a:not(.btn) { color: var(--coral-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-body .btn { margin-top: 30px; }
.legal-footer { padding-top: 60px; }
.legal-footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 40px; }
.legal-footer-top img { width: 220px; height: auto; }
.legal-footer-top p { margin: 0; }
.legal-footer-top a:hover { color: #fff; }
.legal-footer .footer-bottom { margin-top: 0; }
@media (max-width: 767px) {
  .legal-actions .legal-donate { display: none; }
  .legal-hero { padding: 64px 0 54px; }
  .legal-body { padding: 56px var(--gutter) 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
