/* Purpose Pulse Coaching — shared styles
   Warm, calm, grounded. Australian English content.
   Palette: cream, warm charcoal, sage, deep eucalyptus, terracotta. */

:root {
  --cream:        #FBF8F3;
  --sand:         #F2EBDF;
  --sand-deep:    #E7DCC9;
  --charcoal:     #2E2A26;
  --charcoal-soft:#5A534C;
  --sage:         #6B8F71;
  --eucalyptus:   #3E5C4B;
  --terracotta:   #C97B5A;
  --terracotta-dk:#B5664A;
  --white:        #FFFFFF;
  --radius:       14px;
  --maxw:         1080px;
  --shadow:       0 10px 30px rgba(46, 42, 38, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--eucalyptus);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; color: var(--charcoal); }

p { margin: 0 0 1.1em; }

a { color: var(--terracotta-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-deep);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Fraunces", serif;
  font-weight: 600; font-size: 1.25rem; color: var(--eucalyptus); }
.brand:hover { text-decoration: none; }
.brand .dot { width: 12px; height: 12px; border-radius: 50%;
  background: var(--terracotta); display: inline-block; }
.nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a { color: var(--charcoal-soft); font-weight: 600; font-size: 0.97rem; }
.nav a:hover, .nav a.active { color: var(--eucalyptus); text-decoration: none; }
.nav .cta { background: var(--terracotta); color: var(--white);
  padding: 9px 18px; border-radius: 999px; }
.nav .cta:hover { background: var(--terracotta-dk); text-decoration: none; }
@media (max-width: 760px) {
  header.site { position: static; }
  .nav { flex-direction: column; align-items: flex-start; gap: 14px; padding: 14px 20px; }
  .nav ul { gap: 10px 16px; }
  .nav a { font-size: 0.9rem; }
  .nav .cta { padding: 7px 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: var(--terracotta); color: var(--white);
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--terracotta-dk); text-decoration: none; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--eucalyptus);
  border: 2px solid var(--sage); }
.btn.ghost:hover { background: var(--sage); color: var(--white); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 52px 0; }
section.sand { background: var(--sand); }
section.eucalyptus { background: var(--eucalyptus); }
section.eucalyptus h1, section.eucalyptus h2, section.eucalyptus h3 { color: var(--cream); }
section.eucalyptus p { color: #E6EDE7; }

.kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--terracotta-dk); margin-bottom: 10px; }
.lead { font-size: 1.2rem; color: var(--charcoal-soft); max-width: 64ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 70%); }
.hero .wrap { padding-top: 84px; padding-bottom: 84px; }
.hero h1 { max-width: 18ch; }
.hero .lead { margin-top: 8px; }
.hero .actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white); border: 1px solid var(--sand-deep);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.card h3 { color: var(--eucalyptus); margin-top: 0; }
.card .num { font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--terracotta);
  font-weight: 600; display: block; margin-bottom: 6px; }

.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature .mark { flex: 0 0 auto; width: 12px; height: 12px; border-radius: 50%;
  background: var(--sage); margin-top: 9px; }

/* placeholder marker for content needing Mum's input */
.placeholder {
  background: #FFF7E8; border-left: 4px solid var(--terracotta);
  padding: 10px 16px; border-radius: 6px; font-size: 0.95rem;
  color: var(--charcoal-soft); margin: 0 0 1.1em;
}
.placeholder::before { content: "✎ "; }

/* ---------- Facilitators ---------- */
.person { text-align: center; }
.person .avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--sand-deep); display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", serif; font-size: 2.2rem; color: var(--eucalyptus);
}
.person .portrait {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 45%;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  border: 1px solid var(--sand-deep);
  box-shadow: var(--shadow);
}

/* ---------- Invitation band ---------- */
.invite { text-align: center; }
.invite h2 { color: var(--cream); }
.invite .btn { margin-top: 18px; }

/* ---------- Disclaimer ---------- */
.disclaimer { font-size: 0.92rem; color: var(--charcoal-soft);
  background: var(--sand); border-radius: var(--radius); padding: 20px 24px;
  max-width: 70ch; margin: 0 auto; }

/* ---------- Forms ---------- */
.formgrid { display: grid; gap: 16px; max-width: 560px; }
label { font-weight: 700; font-size: 0.95rem; display: block; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--sand-deep);
  border-radius: 10px; font: inherit; font-size: 1rem; background: var(--white);
}
input:focus, textarea:focus { outline: 2px solid var(--sage); border-color: var(--sage); }

/* ---------- Footer ---------- */
footer.site { background: var(--charcoal); color: #D9D3CB; padding: 54px 0 30px; }
footer.site a { color: var(--cream); }
footer.site h4 { color: var(--cream); font-family: "Nunito Sans", sans-serif;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { footer .cols { grid-template-columns: 1fr; } }
footer .fbrand { font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--cream); }
footer ul { list-style: none; padding: 0; margin: 0; line-height: 2; }
footer .fine { border-top: 1px solid #463F39; margin-top: 34px; padding-top: 20px;
  font-size: 0.85rem; color: #A89F94; }

/* ---------- Logo ---------- */
.site-logo { display: block; width: min(360px, 80vw); height: auto; margin: 0 0 24px; }
.hero .site-logo { margin-left: 0; margin-right: auto; }
.center .site-logo { margin-left: auto; margin-right: auto; }
.footer-logo { display: block; width: 180px; height: auto; background: var(--cream);
  padding: 12px 16px; border-radius: 12px; margin: 0 0 16px; }
@media (max-width: 700px) {
  .site-logo { width: min(280px, 85vw); }
  .footer-logo { width: 150px; padding: 10px 14px; }
}
