@font-face {
  font-family: 'Sloop Script Pro';
  src: url('assets/sloop-script-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: 'Saira Condensed', sans-serif;
  --font-subtitle: 'Saira Condensed', sans-serif;
  --font-script: 'Sloop Script Pro', 'Apple Chancery', 'URW Chancery L', cursive;
  --bg: #ece8ea;
  --surface: #f8f5f6;
  --surface-strong: #ffffff;
  --text: #37464d;
  --muted: #667278;
  --primary: #7d8460;
  --primary-strong: #62684d;
  --accent: #cf9a60;
  --dark-bg: #37464d;
  --border: #d6cfd2;
  --shadow: 0 15px 35px rgba(55, 70, 77, 0.12);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: linear-gradient(180deg, #f4f0f1 0, var(--bg) 18rem, var(--bg) 100%);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--primary);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #6b7352;
  box-shadow: 0 6px 20px rgba(55, 70, 77, 0.08);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  min-height: 74px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.7rem;
}

.logo {
  width: auto;
  height: 52px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(55, 70, 77, 0.14);
}

.org-name {
  color: #f8f5f6;
  font-family: var(--font-subtitle);
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(2.35rem, 3.45vw, 3.15rem);
  line-height: 0.78;
  font-style: normal;
  display: block;
  transform: translateY(2px);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.main-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  color: #f8f5f6;
  border: 1px solid rgba(248, 245, 246, 0.35);
  font-weight: 700;
  line-height: 1;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: #f8f5f6;
  background: rgba(248, 245, 246, 0.14);
}

.hero {
  padding: 2.2rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(460px, 560px) minmax(320px, 1fr);
  grid-template-areas:
    'copy newsletter'
    'calendar newsletter'
    'widgets widgets';
  gap: 0.8rem;
  align-items: start;
}

.hero-copy {
  grid-area: copy;
}

.newsletter-card {
  grid-area: newsletter;
  align-self: end;
}

#calendar {
  grid-area: calendar;
  align-self: end;
  scroll-margin-top: 86px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

h1 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.lead {
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.4;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.hero-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--primary-strong);
  background: var(--surface-strong);
  color: var(--primary-strong);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hero-action-btn:hover,
.hero-action-btn:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: #f8f5f6;
}

.hero-email-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  width: fit-content;
  max-width: 100%;
  min-height: 64px;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--primary-strong);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #f8f5f6;
  text-decoration: none;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 25px rgba(55, 70, 77, 0.16);
}

.hero-email-cta:hover,
.hero-email-cta:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(55, 70, 77, 0.2);
}

.newsletter-card,
.widget-card {
  background: var(--surface-strong);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.newsletter-card h2,
.widget-card h2,
.content-sections h2 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  margin: 0 0 0.35rem;
}

.newsletter-form {
  display: grid;
  gap: 0.55rem;
}

.newsletter-form label {
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.newsletter-form input {
  border: 1px solid #c7bdc2;
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
  background: #fff;
}

.newsletter-form button {
  margin-top: 0.9rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  cursor: pointer;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  filter: brightness(1.06);
}

.form-note,
.help-text {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.widgets {
  grid-area: widgets;
  padding: 0.15rem 0 0;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.widget-header a {
  color: var(--primary-strong);
  text-underline-offset: 2px;
}

.embed-wrap {
  margin-top: 0.45rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.embed-wrap iframe {
  width: 100%;
  display: block;
  border: 0;
}

.calendar-wrap iframe {
  min-height: 470px;
}

.resources-card {
  margin-top: 1rem;
}

.resources-wrap iframe {
  min-height: 560px;
}

#instagram behold-widget {
  display: block;
}

.content-sections {
  padding: 0 0 2.2rem;
}

.content-sections h2 {
  margin-top: 1.1rem;
}

.content-sections p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #45555d;
  padding: 0.95rem 0;
  background: var(--dark-bg);
  color: #ecdfd1;
}

#mc_embed_signup h2 {
  margin-bottom: 0.35rem;
}

#mc_embed_signup .indicates-required {
  margin: 0 0 0.25rem;
}

#mc_embed_signup .mc-field-group {
  padding-bottom: 0.45rem;
}

#mc_embed_signup .mc-field-group label {
  margin-bottom: 0.2rem;
}

#mc_embed_signup input[type='text'],
#mc_embed_signup input[type='email'] {
  min-height: 36px;
  padding: 0.35rem 0.55rem;
}

#mc_embed_signup .clear {
  margin-top: 0.25rem;
}

#mc_embed_signup .button {
  height: auto;
  line-height: 1;
  padding: 0.45rem 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  width: auto;
  height: 52px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      'copy'
      'newsletter'
      'calendar'
      'widgets';
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


