:root {
  --ink: #251924;
  --muted-ink: #5e5360;
  --paper: #fffaf5;
  --soft: #f3ece8;
  --plum: #6f2a63;
  --rose: #b84565;
  --gold: #d7a84b;
  --teal: #2f7472;
  --line: rgba(37, 25, 36, 0.14);
  --shadow: 0 18px 45px rgba(49, 34, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--plum);
  font-size: 1.35rem;
  font-weight: 850;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a {
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--muted-ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  color: var(--ink);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 520px;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.88), rgba(255, 250, 245, 0.98)),
    var(--paper);
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  color: var(--plum);
  font-size: clamp(4.25rem, 9vw, 7.25rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
}

.lede {
  max-width: 13em;
  margin: 0;
  color: var(--muted-ink);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-actions,
.calendar-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(215, 168, 75, 0.45);
  outline-offset: 2px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.intro-band a {
  display: grid;
  gap: 0.25rem;
  min-height: 138px;
  padding: 1.25rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.intro-band a:last-child {
  border-right: 0;
}

.intro-band strong {
  color: var(--rose);
  font-size: 1.1rem;
}

.intro-band span {
  color: var(--muted-ink);
}

.intro-band a:hover,
.intro-band a:focus-visible {
  background: #fff;
  outline: none;
}

.content-section,
.calendar-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.content-section.muted {
  background: var(--soft);
}

.content-section.feature {
  background: var(--ink);
  color: var(--paper);
}

.content-section.feature .eyebrow,
.content-section.feature a {
  color: var(--gold);
}

.content-section.feature .section-body,
.content-section.feature .section-body p {
  color: rgba(255, 250, 245, 0.84);
}

.section-heading {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.section-body {
  max-width: 760px;
  color: var(--muted-ink);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.section-body p:first-child {
  margin-top: 0;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.section-body a {
  color: var(--plum);
  font-weight: 800;
}

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

.link-list a {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.belief-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.belief-list li {
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

.calendar-section {
  grid-template-columns: 1fr;
  background: #fff;
}

.calendar-heading {
  justify-content: space-between;
}

.calendar-heading h2 {
  max-width: 14ch;
}

.calendar-embed {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero,
  .content-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 42vh;
  }

  .intro-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band a:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding-inline: 0.55rem;
  }

  .hero-copy {
    padding: 2rem 1rem 2.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  h2 {
    max-width: 100%;
    font-size: 2rem;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-band a,
  .intro-band a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .content-section,
  .calendar-section {
    padding: 3rem 1rem;
  }

  .calendar-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-embed {
    min-height: 560px;
  }

  .calendar-embed iframe {
    height: 620px;
  }

  .site-footer {
    flex-direction: column;
  }
}
