:root {
  --navy: #10233f;
  --gold: #c89b45;
  --light: #f5f1e8;
  --text: #1e2530;
  --muted: #5d6673;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
  border-bottom: 6px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.badge-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #f2d9a4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 700;
}

h1, h2, h3 { line-height: 1.15; margin-top: 0; }

h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); margin-bottom: 8px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); }
h3 { color: var(--navy); }

.subtitle { margin: 0; font-size: 1.15rem; max-width: 720px; }

.hero { padding: 54px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-text p { font-size: 1.08rem; }

.notice-box {
  margin-top: 24px;
  padding: 18px;
  border-left: 6px solid var(--gold);
  background: var(--light);
  border-radius: 10px;
}

.hero-photo-wrap {
  border: 8px solid var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16, 35, 63, 0.16);
}

.hero-photo {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
}

.section { padding: 52px 0; }
.light { background: var(--light); }

.two-column {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.card, .support-card {
  background: var(--white);
  border: 1px solid #e2d8c5;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.08);
}

ul { padding-left: 22px; }
li { margin-bottom: 8px; }

.small { color: var(--muted); font-size: 0.95rem; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  border-top: 5px solid var(--gold);
}

.photo-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
}

.wide-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 8px solid var(--white);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 30px 0;
}

.site-footer p { margin: 4px 0; }

@media (max-width: 800px) {
  .header-inner, .hero-grid, .two-column, .support-grid, .photo-section {
    grid-template-columns: 1fr;
  }
  .header-inner { display: grid; text-align: center; justify-items: center; }
  .badge-logo { width: 96px; height: 96px; }
  .hero { padding: 34px 0; }
  .section { padding: 38px 0; }
}
