:root {
  --blue: #2774ae;
  --blue-dark: #2774ae;
  --gold: #ffd100;
  --ink: #1a1a1a;
  --white: #ffffff;
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  --container: 1180px;
  --pad: clamp(18px, 3.5vw, 36px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.section { padding: 28px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 15px 25px;
  border: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow);
}

.btn--gold {
  background: var(--gold);
  color: #111;
}

.btn--gold:hover { background: #f3c900; }

.section-title {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.55;
}

.bullet-list li { margin: 0 0 6px; }
.bullet-list li::marker { color: var(--gold); }

/* HERO */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 26, 38, 0.1) 0%, rgba(15, 26, 38, 0.1) 46%, rgba(15, 26, 38, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  padding: 0px 0 28px;
}

.hero__topbar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 25px 0px 25px 0px;  
}

.brand__logo {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.hero__content {
  width: min(760px, 100%);
  margin-top: auto;
  padding-bottom: 8px;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.95rem, 6.2vw, 5.15rem);
  line-height: 0.91;
  letter-spacing: -3px;
  font-weight: 800;
}

.hero__subtitle {
  margin: 8px 0 16px;
  font-size: clamp(1.05rem, 1.9vw, 1.55rem);
  line-height: 1.05;
  font-weight: 400;
}

.hero__datebox {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 12px 16px 11px;
  box-shadow: var(--shadow);
}

.hero__datebox div:first-child {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.08;
  font-weight: 700;
}

.hero__datebox div:last-child {
  margin-top: 4px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.08;
  font-weight: 700;
}

.hero__btn {
  margin-top: 0;
  padding: 11px 18px;
  font-size: 18px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}

/* INTRO OVERLAY SECTION */
.intro {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.intro__grid {
  position: relative;
  /* min-height: 720px; */
  display: flex;
  align-items: center;
}

/* FULL BACKGROUND IMAGE */
.intro__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* TEXT CONTENT */
.intro__copy,
.donation__copy {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 0px 30px 0px;
}

.intro__title {
  margin-bottom: 28px;
}

.intro__copy p {
  /* margin: 0 0 28px; */
  font-size: 18px;
  line-height: 1.45;
  max-width: 45ch;
  color: #1a1a1a;
}

.intro__copy strong {
  font-weight: 800;
}

.photo-card {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 520px;
  overflow: hidden;
  background: #dbe7f1;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.fade-left::before,
.fade-right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 65%;
  z-index: 2;
  pointer-events: none;
}

.fade-left::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
}



/* MOBILE */
@media (max-width: 900px) {

  .intro__grid {
    min-height: auto;
    display: block;
  }

  .intro__media {
    position: relative;
    height: 420px;
  }

  .intro__copy {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 40px 0;
  }

  .intro__copy p {
    font-size: 18px;
    max-width: 100%;
  }
}






/* BLUE SECTION */
.blue-section {
  background: var(--blue);
  color: #fff;
  padding-top: 22px;
  padding-bottom: 30px;
}

.blue-section__inner {
  display: grid;
  gap: 18px;
}

.callout-box {
  display: inline-block;
  width: fit-content;
  background: var(--gold);
  color: #111;
  padding: 15px 18px 14px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;  
}

.content-block {
  max-width: 1080px;
}

.content-block h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.note-text {
  margin: 10px 0 0;
  max-width: 53ch;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

/* DONATION OVERLAY SECTION */
.donation {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.donation__grid {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
}

/* FULL BACKGROUND IMAGE */
.donation__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.donation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* TEXT CONTENT */

.donation__title {
  margin-bottom: 28px;
}

.donation__copy p {
  /* margin: 24px 0 0; */
  font-size: 18px;
  line-height: 1.45;
  max-width: 45ch;
  color: #1a1a1a;
}

.donation__list {
  margin-top: 0;
}

.donation__list li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.donation__list li::marker {
  color: var(--blue); /* Changes bullet color to red */
}




/* MOBILE */
@media (max-width: 900px) {

  .donation__grid {
    min-height: auto;
    display: block;
  }

  .donation__media {
    position: relative;
    height: 420px;
  }

  .donation__copy {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 40px 0;
  }

  .donation__copy p,
  .donation__list li {
    font-size: 18px;
    max-width: 100%;
  }
}

/* CLOSING */
.closing {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.closing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.25) 38%, rgba(0, 0, 0, 0.08) 100%);
}

.closing__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  padding-top: 22px;
  padding-bottom: 22px;
}

.closing__content {
  max-width: 560px;
}

.closing__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.8vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 800;
  text-wrap: balance;
}

.closing__box {
  max-width: 360px;
  margin-top: 14px;
  background: rgba(39, 116, 174, 0.95);
  color: #fff;
  padding: 16px 18px;
  font-size: 17px;
  line-height: 1.28;
  box-shadow: var(--shadow);
}

.closing__btn {
  margin-top: 14px;
}

/* FOOTER */
.footer {
  background: var(--blue);
  color: #fff;
  padding: 20px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__url {
  font-size: 12px;
  line-height: 1;
  opacity: 0.95;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 22px;
  padding: 0 15px;
  margin: 15px 0px 15px 0px;
  background: #fff;
  color: black;
  font-size: 12px;
  font-weight: 100;
  line-height: 1;
}

.footer__logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__label {
  font-size: 12px;
  opacity: 0.9;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.footer__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

.social-icon {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { min-height: 470px; }

  .intro__grid,
  .donation__grid {
    grid-template-columns: 1fr;
  }

  .intro__copy,
  .donation__copy {
    padding-right: 0;
  }

  .intro__media,
  .donation__media {
    min-height: 260px;
  }

  .closing {
    min-height: 300px;
  }

  .closing__inner {
    padding-top: 18px;
  }

  .fade-left::before {
    display: none;
  }


}

@media (max-width: 640px) {
  :root { --pad: 16px; }

  .hero__inner {
    padding-top: 14px;
  }

  .brand__logo {
    width: 112px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__title {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__datebox,
  .hero__btn,
  .callout-box,
  .closing__box {
    width: 100%;
    max-width: none;
  }

  .callout-box,
  .content-block h3,
  .note-text,
  .intro__copy p,
  .donation__copy p,
  .bullet-list {
    font-size: 16px;
  }

  .section-title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .footer__inner {
    align-items: flex-start;
  }

  .footer__right {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .intro__grid,
  .donation__grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .intro__copy,
  .donation__copy {
    order: 1;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px var(--pad) 18px;
  }

  .intro__media,
  .donation__media {
    order: 2;
    position: relative;
    inset: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 320px;
  }

  .intro__media img,
  .donation__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .intro__copy p,
  .donation__copy p,
  .donation__list li {
    max-width: none;
    font-size: 18px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .intro__media,
  .donation__media {
    height: 260px;
  }

  .intro__copy,
  .donation__copy {
    width: 100%;
    padding: 20px var(--pad) 18px;
  }

  .intro__title,
  .donation__title {
    margin-bottom: 14px;
  }

  .intro__copy p,
  .donation__copy p,
  .donation__list li {
    font-size: 16px;
  }
}


