:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #4c5654;
  --cream: #f8f4ed;
  --sea: #0f5b52;
  --leaf: #2a7a5a;
  --mist: #e3efe8;
  --sun: #f2c166;
  --shadow: 0 28px 60px -40px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #ffffff 0%, #f4f7f2 45%, #e6f1ec 100%);
  color: var(--ink);
}

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

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-hero {
  padding: 80px 0 64px;
}

.hero-card {
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 8px 0 16px;
}

.hero-copy {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--sea), #0f3f3a);
  border-radius: var(--radius);
  color: #ffffff;
  padding: 32px;
}

.hero-panel h2 {
  font-family: "Fraunces", serif;
  margin-top: 0;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-list li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.section {
  padding: 72px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 8px 0 0;
}

.section-note {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.inline-code {
  font-family: "SFMono-Regular", Menlo, monospace;
  background: var(--mist);
  padding: 2px 6px;
  border-radius: 6px;
}

.btn {
  background: var(--sea);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.5);
}

.btn.ghost {
  background: transparent;
  color: var(--sea);
  border: 1px solid var(--sea);
  box-shadow: none;
}

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

.meetings-section {
  background: #ffffff;
}

#tsml-ui {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.events-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f0e6 100%);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.event-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #efe7dc;
  box-shadow: 0 16px 32px -28px rgba(0, 0, 0, 0.35);
}

.event-date {
  font-weight: 600;
  color: var(--sea);
  margin-top: 0;
}

.event-meta,
.event-detail {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-section {
  background: #f0f5f1;
}

.contact-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-copy {
  color: var(--muted);
  line-height: 1.7;
}

.contact-details {
  margin-top: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.4);
}

.contact-label {
  margin: 0;
  font-weight: 600;
}

.contact-value {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0 48px;
  text-align: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .hero-card {
    padding: 32px;
  }

  .hero-panel {
    padding: 24px;
  }

  .section {
    padding: 60px 0;
  }
}
