:root {
  --blue: #0007c9;
  --sky: #b6d9ff;
  --burgundy: #4c0e16;
  --orange: #fb5416;
  --cream: #faf5f0;
  --yellow: #ffdf53;
  --ink: #101116;
  --white: #ffffff;
  --radius: 1.7rem;
  --shadow: 0 1.5rem 4rem rgba(76, 14, 22, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.58;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible { outline: 0.2rem solid var(--yellow); outline-offset: 0.25rem; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.site-header { position: relative; z-index: 10; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.8rem;
}
.brand img { width: 9.2rem; height: auto; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 1.4rem; font-weight: 850; }
.nav a { text-decoration: none; }
.nav-link { padding: 0.45rem 0; border-bottom: 0.18rem solid transparent; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--orange); border-color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border: 0.125rem solid transparent;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 0.8rem 1.6rem rgba(251, 84, 22, 0.24); }
.button--light { background: var(--white); color: var(--blue); }
.button--blue { background: var(--blue); color: var(--white); }
.button--outline { border-color: currentColor; background: transparent; color: var(--blue); }

h1, h2, h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}
.kicker {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead { max-width: 44rem; margin: 1.5rem 0 0; font-size: clamp(1.1rem, 2vw, 1.35rem); }

.home-hero { padding: 1.2rem 0 5.5rem; }
.home-hero-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  min-height: 620px;
  padding: clamp(2.2rem, 6vw, 5.4rem);
  border-radius: calc(var(--radius) + 0.6rem);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}
.home-hero-grid::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -6rem;
  width: min(34vw, 27rem);
  height: 32rem;
  background: url("assets/flamme-orange.png") center / contain no-repeat;
  opacity: 0.2;
  transform: rotate(8deg);
}
.home-hero-copy { position: relative; z-index: 1; align-self: center; }
.home-hero h1 { max-width: 9ch; font-size: clamp(4.6rem, 9.2vw, 9rem); }
.home-hero h1 span { color: var(--yellow); }
.home-hero .lead { max-width: 39rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.event-peek {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 1.5rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.55);
  border-radius: 1.4rem;
  background: var(--burgundy);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}
.event-peek .mini-title { display: block; color: var(--yellow); font-weight: 950; text-transform: uppercase; }
.event-peek strong { display: block; margin-top: 0.5rem; font-size: 1.45rem; line-height: 1.15; }
.event-peek p { margin: 0.75rem 0 1.2rem; color: rgba(255,255,255,0.82); }

.section { padding: 5.5rem 0; }
.section--compact { padding-top: 1.5rem; }
.section-heading { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 3rem; align-items: end; margin-bottom: 2.8rem; }
.section-heading h2 { max-width: 9ch; color: var(--blue); font-size: clamp(3.4rem, 7vw, 6.7rem); }
.section-heading p { max-width: 42rem; margin: 0; color: #34343b; font-size: clamp(1.1rem, 2vw, 1.35rem); }

.pillars, .actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pillar, .action-card { padding: 2rem; border-radius: var(--radius); }
.pillar { min-height: 18rem; }
.pillar:nth-child(1) { background: var(--burgundy); color: var(--white); }
.pillar:nth-child(2) { background: var(--sky); color: var(--blue); }
.pillar:nth-child(3) { background: var(--orange); color: var(--white); }
.card-number { display: block; margin-bottom: 3.7rem; font-weight: 950; opacity: 0.72; }
.pillar h3, .action-card h3 { font-size: clamp(2.1rem, 4vw, 3.35rem); }
.pillar p, .action-card p { margin: 1rem 0 0; font-size: 1.05rem; }

.story-band { padding: 1.2rem 0 6rem; }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--yellow);
}
.story-photo { min-height: 34rem; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.story-copy h2 { max-width: 9ch; color: var(--burgundy); font-size: clamp(3.3rem, 6vw, 5.8rem); }
.story-copy p { margin: 1.4rem 0 0; font-size: 1.15rem; }
.story-copy .button { align-self: flex-start; margin-top: 1.6rem; }

.page-hero { padding: 1.2rem 0 4rem; }
.page-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 7vw, 6rem);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--burgundy);
  color: var(--white);
}
.page-hero-card::after {
  content: "";
  position: absolute;
  right: clamp(-4rem, -2vw, -1rem);
  top: -7rem;
  width: 23rem;
  height: 34rem;
  background: url("assets/flamme-orange.png") center / contain no-repeat;
  opacity: 0.14;
}
.page-hero h1 { position: relative; z-index: 1; max-width: 11ch; font-size: clamp(4rem, 8vw, 8rem); }
.page-hero h1 span { color: var(--yellow); }
.page-hero .lead, .page-hero .kicker { position: relative; z-index: 1; }

.mission-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
.mission-grid h2 { max-width: 9ch; color: var(--blue); font-size: clamp(3.4rem, 6vw, 5.8rem); }
.prose p { margin: 0 0 1.2rem; font-size: 1.12rem; }
.conviction { margin-top: 2rem; padding: 1.6rem; border-left: 0.5rem solid var(--orange); border-radius: 0 1rem 1rem 0; background: var(--white); font-weight: 800; }

.action-card { min-height: 17rem; background: var(--white); box-shadow: 0 0.8rem 2rem rgba(76,14,22,0.08); }
.action-card:nth-child(2) { background: var(--sky); }
.action-card:nth-child(3) { background: var(--yellow); }
.action-card .card-number { margin-bottom: 2.7rem; color: var(--orange); }

.official-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--blue);
  color: var(--white);
}
.official-card h2 { max-width: 8ch; font-size: clamp(3.2rem, 6vw, 5.5rem); }
.details { display: grid; gap: 1rem; }
.detail { padding-bottom: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.28); }
.detail:last-child { border: 0; }
.detail-label { display: block; color: var(--sky); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.detail-value { display: block; margin-top: 0.25rem; font-size: 1.05rem; font-weight: 800; }

.talk-detail { padding: 1.5rem 0 6rem; }
.talk-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4rem;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}
.date-block { align-self: center; }
.day { display: block; color: var(--yellow); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(7rem, 15vw, 12rem); line-height: 0.72; }
.month { display: block; margin-top: 1.4rem; font-size: 1.8rem; font-weight: 950; text-transform: uppercase; }
.time { display: block; margin-top: 0.4rem; color: var(--sky); font-weight: 850; }
.talk-copy h2 { max-width: 10ch; font-size: clamp(3.5rem, 7vw, 6.5rem); }
.talk-copy h2 span { color: var(--orange); }
.talk-copy p { max-width: 40rem; margin: 1.4rem 0 1.8rem; font-size: 1.15rem; }
.talk-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 1.8rem; padding: 0; list-style: none; }
.talk-meta li { padding: 0.55rem 0.85rem; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; font-weight: 800; }
.talk-note { margin-top: 1rem; color: var(--sky); font-size: 0.92rem; }

.contact-strip { padding: 0 0 6rem; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
}
.contact-card h2 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
.contact-card p { margin: 0.6rem 0 0; }

footer { background: var(--blue); color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; min-height: 12rem; }
.footer-logo { width: 10rem; }
.footer-copy { max-width: 38rem; margin: 0.7rem 0 0; color: var(--sky); }
.footer-links { display: grid; gap: 0.5rem; justify-items: end; }
.footer-links a { font-weight: 850; text-decoration-color: var(--orange); text-underline-offset: 0.25rem; }

@media (max-width: 900px) {
  .topbar { align-items: flex-start; padding-block: 1rem; }
  .nav { flex-wrap: wrap; gap: 0.65rem 1rem; }
  .nav .button { width: 100%; }
  .home-hero-grid, .section-heading, .story-grid, .mission-grid, .official-card, .talk-card { grid-template-columns: 1fr; }
  .home-hero-grid { min-height: 0; }
  .event-peek { max-width: 30rem; align-self: auto; }
  .section-heading, .mission-grid { gap: 1.4rem; }
  .pillars, .actions-grid { grid-template-columns: 1fr; }
  .pillar, .action-card { min-height: 0; }
  .card-number { margin-bottom: 2.5rem; }
  .story-photo { min-height: 28rem; }
  .talk-card { gap: 2.5rem; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 1rem, 1180px); }
  .topbar { display: block; }
  .brand img { width: 7.4rem; }
  .nav { justify-content: flex-start; margin-top: 0.8rem; }
  .nav-link { font-size: 0.9rem; }
  .home-hero { padding-top: 0.3rem; }
  .home-hero-grid { gap: 2rem; padding: 2rem 1.3rem 2.5rem; }
  .home-hero h1 { font-size: clamp(4rem, 19vw, 5.7rem); }
  .home-hero-grid::after { right: -5rem; width: 15rem; }
  .section { padding: 4rem 0; }
  .section-heading h2, .story-copy h2, .mission-grid h2, .official-card h2, .talk-copy h2 { font-size: 3.45rem; }
  .story-photo { min-height: 23rem; }
  .story-copy, .pillar, .action-card, .talk-card, .official-card { padding: 1.5rem; }
  .page-hero-card { padding: 2.5rem 1.4rem; }
  .page-hero h1 { font-size: 4rem; }
  .day { font-size: 7rem; }
  .footer-inner { grid-template-columns: 1fr; padding-block: 2.5rem; }
  .footer-links { justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
