:root {
  color-scheme: light;
  --ink: #172421;
  --muted: #66716d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --teal: #0d4f4a;
  --teal-dark: #083431;
  --amber: #d9982f;
  --coral: #c96b55;
  --line: rgba(23, 36, 33, 0.14);
  --shadow: 0 22px 60px rgba(12, 31, 29, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 32px rgba(20, 34, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-media {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 25, 0.9) 0%, rgba(7, 27, 25, 0.72) 32%, rgba(7, 27, 25, 0.2) 72%),
    linear-gradient(0deg, rgba(7, 27, 25, 0.56), rgba(7, 27, 25, 0.08) 42%);
}

.hero-content {
  z-index: 1;
  display: flex;
  width: min(740px, calc(100% - 36px));
  flex-direction: column;
  justify-content: center;
  padding: 112px 0 76px;
  margin-left: clamp(18px, 7vw, 96px);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: #ffd84d;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #14221f;
  background: var(--amber);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.intro-section,
.values-section,
.gatherings-section,
.connect-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) 0;
}

.intro-grid,
.gatherings-section,
.connect-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-grid h2,
.gatherings-section h2,
.connect-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p,
.connect-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.value-card,
.event-item,
.connect-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(14, 35, 32, 0.07);
}

.value-card {
  min-height: 260px;
  padding: 28px;
}

.value-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--coral);
  font-weight: 900;
}

.value-card h3,
.event-item h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.value-card p,
.event-item p {
  color: var(--muted);
}

.gatherings-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-item {
  padding: 24px;
}

.event-item time {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.connect-section {
  align-items: center;
}

.connect-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(13, 79, 74, 0.16);
}

.connect-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 32px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--teal-dark);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 27, 25, 0.88) 0%, rgba(7, 27, 25, 0.58) 52%, rgba(7, 27, 25, 0.72) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    justify-content: end;
    margin: 0 auto;
    padding-bottom: 52px;
  }

  .intro-grid,
  .gatherings-section,
  .connect-section,
  .values-section {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .value-number {
    margin-bottom: 28px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(3.2rem, 20vw, 4.25rem);
  }

  .button {
    width: 100%;
  }

  .connect-form .button {
    width: 100%;
  }
}
