:root {
  --navy-950: #072541;
  --navy-900: #0b2f50;
  --navy-800: #153c5d;
  --navy-700: #244c6c;
  --gold: #cfa555;
  --gold-light: #e9d2a2;
  --gold-pale: #f6ecd7;
  --ivory: #fcf9f2;
  --cream: #f7f1e7;
  --mist: #eef5f9;
  --white: #ffffff;
  --text: #18354e;
  --muted: #5c6f7f;
  --border: rgba(207, 165, 85, .35);
  --shadow: 0 22px 50px rgba(13, 46, 75, .10);
  --shadow-soft: 0 12px 28px rgba(13, 46, 75, .08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; background: var(--gold); color: var(--navy-950); border-radius: 10px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

h1, h2, h3, .brand-copy strong { font-family: "Cormorant Garamond", Georgia, serif; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(4rem, 8vw, 7.4rem); line-height: .82; letter-spacing: -.045em; font-weight: 600; color: var(--navy-900); margin-bottom: 28px; }
h2 { font-size: clamp(2.8rem, 5vw, 4.6rem); line-height: .98; letter-spacing: -.035em; font-weight: 600; color: var(--navy-900); margin-bottom: 22px; }
h3 { font-size: 2rem; line-height: 1.05; color: var(--navy-900); margin-bottom: 10px; }
p { margin-bottom: 1.1rem; }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: rgba(7, 37, 65, .96); color: var(--white); backdrop-filter: blur(16px); box-shadow: 0 8px 28px rgba(7, 37, 65, .12); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: var(--navy-800); overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 2px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1.65rem; letter-spacing: .02em; font-weight: 600; text-transform: uppercase; }
.brand-copy span { margin-top: 5px; color: var(--gold); font-size: .76rem; letter-spacing: .16em; font-weight: 700; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav a { position: relative; color: rgba(255,255,255,.88); text-decoration: none; font-size: .93rem; font-weight: 600; padding-block: 30px; transition: color .2s; }
.site-nav a::after { content: ""; position: absolute; left: 50%; bottom: 20px; width: 0; height: 2px; background: var(--gold); transform: translateX(-50%); transition: width .2s; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.active::after { width: 20px; }
.site-nav .nav-donate { padding: 12px 22px; border-radius: 12px; background: linear-gradient(135deg, #e0bd72, var(--gold)); color: var(--navy-950); box-shadow: 0 8px 22px rgba(207,165,85,.18); }
.site-nav .nav-donate::after { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: rgba(255,255,255,.06); color: var(--white); }
.menu-toggle svg { width: 24px; height: 24px; }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 78% 22%, rgba(255,255,255,.9), transparent 30%), linear-gradient(115deg, #fffaf0 0%, #f8f0e4 43%, #e8f2f8 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; padding-block: 80px 96px; }
.eyebrow, .section-kicker { margin-bottom: 14px; color: var(--gold); font-size: .78rem; line-height: 1.2; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero-subtitle { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.85rem, 3vw, 2.55rem); font-weight: 600; line-height: 1; margin-bottom: 20px; }
.hero-intro { max-width: 610px; color: #334e65; font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 12px 21px; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-weight: 700; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s; }
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy-900); box-shadow: 0 12px 24px rgba(11,47,80,.18); }
.button-primary:hover { background: var(--navy-800); box-shadow: 0 16px 30px rgba(11,47,80,.22); }
.button-secondary { border-color: var(--navy-800); color: var(--navy-900); background: rgba(255,255,255,.66); }
.button-secondary:hover { background: var(--white); }
.button-gold { width: 100%; margin-top: 24px; color: var(--navy-950); background: var(--gold); }
.hero-visual { position: relative; min-height: 490px; display: grid; place-items: center; }
.hero-logo-wrap { position: relative; z-index: 3; width: min(78vw, 430px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); box-shadow: 0 28px 70px rgba(11,47,80,.22), inset 0 0 0 10px rgba(255,255,255,.96), inset 0 0 0 12px var(--gold); }
.hero-logo-wrap img { width: 94%; height: 94%; object-fit: contain; border-radius: 50%; }
.logo-orbit { position: absolute; border: 1px solid rgba(207,165,85,.4); border-radius: 50%; }
.orbit-one { width: 495px; height: 495px; }
.orbit-two { width: 560px; height: 405px; transform: rotate(-12deg); opacity: .6; }
.hero-heart-line { position: absolute; z-index: 4; width: 54%; right: -7%; bottom: 2%; color: var(--gold); stroke-width: 2; opacity: .95; }
.hero-decoration { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-decoration-one { width: 420px; height: 420px; right: -180px; top: -130px; background: rgba(255,255,255,.65); }
.hero-decoration-two { width: 280px; height: 280px; left: -120px; bottom: -80px; background: rgba(207,165,85,.08); }
.hero-wave { position: absolute; left: -5%; right: -5%; bottom: -66px; height: 115px; background: var(--ivory); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

.section { padding-block: 105px; }
.about-section { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 72px; }
.about-art img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-copy > p:not(.section-kicker) { color: var(--muted); font-size: 1.03rem; }
blockquote { margin: 32px 0 0; padding: 22px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); color: var(--navy-900); }
blockquote span { color: var(--gold); font-family: Georgia, serif; font-size: 3rem; line-height: .7; }
blockquote p { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-style: italic; text-align: center; }
.mission-section { background: linear-gradient(180deg, #f0f6f9 0%, #f8f4eb 100%); }
.section-heading { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.section-heading p:last-child { color: var(--muted); font-size: 1.02rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 20px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,.8); box-shadow: var(--shadow-soft); }
.value-card h3 { font-size: 2rem; margin-bottom: 7px; }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.icon-medallion { width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid var(--gold-light); border-radius: 50%; color: var(--navy-800); background: linear-gradient(145deg, var(--white), var(--gold-pale)); }
.icon-medallion svg { width: 52px; height: 52px; }
.projects-section { background: var(--ivory); }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.project-card { min-height: 360px; display: flex; flex-direction: column; align-items: center; padding: 32px 25px 30px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-icon { width: 104px; height: 104px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 50%; color: var(--navy-800); background: radial-gradient(circle at 30% 30%, #fff, #e7f0f6); box-shadow: inset 0 0 0 1px rgba(36,76,108,.08); }
.project-icon svg { width: 59px; height: 59px; }
.project-card h3 { min-height: 64px; font-size: 1.75rem; }
.project-card p { color: var(--muted); font-size: .93rem; }
.activities-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f9f4e9, #fffaf2); }
.activities-panel { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,.85); box-shadow: var(--shadow-soft); overflow: hidden; }
.activity-item { position: relative; min-height: 166px; display: grid; align-content: center; justify-items: center; gap: 14px; padding: 24px 18px; text-align: center; font-family: "Cormorant Garamond", Georgia, serif; color: var(--navy-900); font-size: 1.35rem; font-weight: 600; line-height: 1.05; }
.activity-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 26px; bottom: 26px; width: 1px; background: var(--border); }
.activity-item svg { width: 50px; height: 50px; color: var(--gold); }
.donate-section { padding-block: 95px; color: var(--white); background: radial-gradient(circle at 10% 20%, rgba(255,255,255,.08), transparent 22%), linear-gradient(120deg, var(--navy-800), var(--navy-950)); }
.donate-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 85px; }
.donate-copy h2 { color: var(--white); }
.donate-copy > p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.heart-list { display: grid; gap: 13px; margin: 32px 0 0; padding: 0; list-style: none; }
.heart-list li { position: relative; padding-left: 28px; color: rgba(255,255,255,.9); }
.heart-list li::before { content: "♥"; position: absolute; left: 0; color: var(--gold); }
.donation-card { padding: 42px; border: 1px solid rgba(233,210,162,.25); border-radius: var(--radius-lg); text-align: center; color: var(--white); background: rgba(255,255,255,.07); box-shadow: 0 28px 60px rgba(0,0,0,.16); backdrop-filter: blur(10px); }
.donation-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 16px; border: 1px solid rgba(233,210,162,.5); border-radius: 50%; color: var(--gold); }
.donation-icon svg { width: 34px; height: 34px; }
.small-label { margin-bottom: 8px; color: var(--gold-light); font-size: .78rem; letter-spacing: .17em; text-transform: uppercase; }
.donation-card h3 { color: var(--white); font-size: 2.55rem; }
.gold-rule { display: flex; align-items: center; gap: 12px; margin: 25px 0; color: var(--gold); }
.gold-rule::before, .gold-rule::after { content: ""; flex: 1; height: 1px; background: rgba(207,165,85,.5); }
.donation-card > p { color: rgba(255,255,255,.75); }
.donation-card > a:not(.button) { display: inline-block; color: var(--gold-light); font-weight: 700; text-decoration: none; word-break: break-word; }
.contact-section { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: start; }
.contact-copy > p:not(.section-kicker) { max-width: 520px; color: var(--muted); }
.contact-links { display: grid; gap: 15px; margin-top: 34px; }
.contact-links a { display: flex; align-items: center; gap: 13px; width: fit-content; color: var(--navy-800); text-decoration: none; font-weight: 600; }
.contact-links svg { width: 23px; height: 23px; color: var(--gold); }
.contact-form { display: grid; gap: 19px; padding: 38px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; color: var(--navy-900); font-weight: 700; font-size: .9rem; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(21,60,93,.18); border-radius: 12px; padding: 13px 15px; color: var(--text); background: #fffdf9; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(207,165,85,.14); }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: .78rem; }
.site-footer { padding-top: 50px; color: rgba(255,255,255,.82); background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; padding-bottom: 38px; }
.footer-brand .brand-mark { width: 64px; height: 64px; }
.footer-main p { margin: 0; text-align: center; }
.footer-email { color: var(--gold-light); text-decoration: none; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  :root { --header-height: 78px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand-copy strong { font-size: 1.35rem; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .86rem; }
  .hero-grid { gap: 28px; }
  .value-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-panel { grid-template-columns: repeat(3, 1fr); }
  .activity-item:nth-child(3)::after { display: none; }
  .donate-grid { gap: 45px; }
}

@media (max-width: 820px) {
  .site-header { height: var(--header-height); }
  .brand-mark { width: 50px; height: 50px; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy span { font-size: .65rem; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: 12px 20px 24px; background: var(--navy-950); box-shadow: 0 20px 35px rgba(0,0,0,.18); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .25s, opacity .25s, visibility .25s; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 15px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav a::after { display: none; }
  .site-nav .nav-donate { margin-top: 12px; text-align: center; border-bottom: 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px 105px; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-inline: auto; }
  .button-row { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .hero-logo-wrap { width: min(74vw, 390px); }
  .orbit-one { width: min(86vw, 440px); height: min(86vw, 440px); }
  .orbit-two { width: min(94vw, 500px); height: min(70vw, 360px); }
  .about-grid, .contact-grid, .donate-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-copy { text-align: center; }
  .donation-card { max-width: 580px; width: 100%; margin-inline: auto; }
  .footer-main { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 25px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: clamp(3.7rem, 19vw, 5.4rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { letter-spacing: .12em; }
  .section { padding-block: 78px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { min-height: 340px; }
  .value-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: auto; }
  .activities-panel { grid-template-columns: 1fr 1fr; }
  .activity-item:nth-child(2)::after, .activity-item:nth-child(4)::after { display: none; }
  .activity-item:nth-child(3)::after { display: block; }
  .donation-card, .contact-form { padding: 28px 22px; }
  .contact-links a { align-items: flex-start; word-break: break-word; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
