:root {
  --cream: #f6f0de;
  --paper: #fffaf1;
  --ink: #1c1712;
  --muted: #5e5348;
  --green: #2e5a39;
  --green-deep: #1e3d28;
  --red: #a62c21;
  --line: #d9d0bb;
  --font: "Karla", "Helvetica Neue", Helvetica, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1080px;
  --header: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.5;
}

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

a {
  color: var(--green-deep);
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.35rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
}

.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.menu-toggle {
  display: none;
}

@media (max-width: 680px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 0.4rem;
    background: var(--paper);
    font-size: 1.1rem;
    cursor: pointer;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }
}

main {
  flex: 1;
}

.hero {
  position: relative;
  background: var(--cream);
}

.hero img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.hero-copy {
  position: absolute;
  left: 60%;
  right: 7%;
  top: 24%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-copy .kicker {
  color: var(--green-deep);
}

.hero-copy h1 {
  font-size: clamp(1.45rem, 3.6vw, 3rem);
}

.hero-copy .lede {
  margin-top: 0.7rem;
  max-width: none;
  font-size: clamp(0.88rem, 1.6vw, 1.12rem);
  color: var(--ink);
}

.hero-copy .actions {
  margin-top: 1rem;
}

.hero-copy .btn {
  min-height: 2.4rem;
  padding: 0 0.95rem;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .hero-copy {
    left: 50%;
    right: 4%;
    top: 26%;
    bottom: 12%;
    justify-content: center;
  }

  .hero-copy .lede {
    display: none;
  }

  .hero-copy .actions {
    margin-top: 0.55rem;
    gap: 0.45rem;
  }

  .hero-copy .btn {
    min-height: 2rem;
    font-size: 0.78rem;
  }
}

.intro {
  padding: 2.2rem 0 2.8rem;
}

.kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
}

.lede {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--green);
  color: var(--paper);
}

.btn-secondary {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.page {
  padding: 2.2rem 0 3.5rem;
}

.page h1 {
  margin-bottom: 0.75rem;
}

.page .lede {
  margin-top: 0;
}

.days {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .days {
    grid-template-columns: repeat(3, 1fr);
  }
}

.day {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.day h2 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.day .when {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.day ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.day li + li {
  margin-top: 0.4rem;
}

.day.saint {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}

.day.saint .when,
.day.saint ul {
  color: #e4d7a8;
}

.day.saint h2 {
  color: var(--cream);
}

.help-list {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 700px) {
  .help-list {
    grid-template-columns: 1fr 1fr;
  }
}

.help-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.1rem 1.15rem;
}

.help-list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--green-deep);
}

.contact-box {
  margin-top: 2rem;
  padding: 1.2rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

.contact-box h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.contact-box p {
  margin: 0;
  color: var(--ink);
}

.contact-box p + p {
  margin-top: 0.55rem;
}

.contact-box a {
  font-weight: 600;
}

.site-footer {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}
