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

:root {
  --blue: #5cbce0;
  --blue-dark: #3a9cc4;
  --pink: #da73d2;
  --pink-light: #f0c6ec;
  --cream: #fdf8f4;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --border: #e8e0d8;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --max-width: 960px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream) url('images/background.jpg') center top / cover no-repeat fixed;
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--pink);
}

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

/* ── NAV ── */

.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: normal;
  letter-spacing: 0.02em;
}

.nav-brand:hover {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--cream);
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ── BANNER ── */

.banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--white);
}

.banner img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}

/* ── MAIN CONTENT ── */

.page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
  flex: 1;
}

.page-title {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: var(--blue-dark);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-light);
}

/* ── HOME LAYOUT ── */

.home-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.home-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.home-photo img {
  width: 100%;
}

.home-text p {
  margin-bottom: 1em;
}

/* ── PROSE ── */

.prose {
  max-width: 720px;
}

.prose p {
  margin-bottom: 1.2em;
}

.prose h2 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin: 2em 0 0.8em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2em 1.5em;
}

.prose li {
  margin-bottom: 0.5em;
}

.prose strong {
  color: var(--text);
}

/* ── TESTIMONIALS ── */

.mission-statement {
  background: var(--white);
  border-left: 4px solid var(--blue);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.mission-statement p {
  font-style: italic;
  margin-bottom: 0.8em;
  color: var(--text-light);
}

.mission-statement p:last-child {
  margin-bottom: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--pink-light);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CONTACT ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-info-card h2 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.contact-phone {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-email {
  font-size: 1.1rem;
}

.contact-email a {
  color: var(--blue);
}

/* ── MAILCHIMP PLACEHOLDER ── */

.mailchimp-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  margin-top: 48px;
}

.mailchimp-placeholder h2 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.mailchimp-placeholder p {
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
}

/* ── LINKS PAGE ── */

.links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.links-list li {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.links-list .link-title {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.links-list .link-url {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
}

/* ── FIRST SESSION ── */

.session-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.info-card p,
.info-card ul {
  color: var(--text-light);
  font-size: 0.95rem;
}

.info-card ul {
  list-style: disc;
  margin-left: 1.2em;
}

.info-card li {
  margin-bottom: 6px;
}

/* ── FOOTER ── */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 24px;
  margin-top: auto;
}

.site-footer p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

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

  .nav-links a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .site-nav {
    position: relative;
  }

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

  .home-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .session-info {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 32px 20px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .banner img {
    max-height: 200px;
  }
}
