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

:root {
  --gold: #C9A84C;
  --gold-light: #F3DB81;
  --gold-dim: #B8943E;
  --sage: #9AB2A4;
  --dusty-rose: #E1A0A6;
  --dusty-blue: #809DBD;
  --blush: #FDEAE4;
  --lavender: #EDE6F9;
  --pale-yellow: #FFF8D6;
  --warm-cream: #F7F5F0;
  --bg: #FFFDF6;
  --surface: #FFFFFF;
  --charcoal: #636466;
  --warm-grey: #929395;
  --text: #3A2E28;
  --text-dim: #929395;
  --border: rgba(201, 168, 76, 0.22);
  --radius: 12px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announcement-bar {
  background: var(--gold-light);
  color: var(--charcoal);
  text-align: center;
  font-size: 13px;
  padding: 10px 24px;
}
.announcement-bar a { text-decoration: underline; font-weight: 500; }

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo img.nav-logo-icon { height: 30px; width: auto; flex-shrink: 0; display: block; }

.nav-logo-text {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  background: var(--gold-light);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal) !important; }

.hamburger { display: none; }

/* ─── SECTIONS (shared) ──────────────────────────────────── */
section { padding: 100px 48px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}

h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
h2 em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
  gap: 64px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(243, 219, 129, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 60%, rgba(253, 200, 190, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 60% 10%, rgba(220, 180, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-text { position: relative; max-width: 720px; }

.hero-sunbeam { height: 64px; width: auto; margin: 0 auto 12px; display: block; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-dim);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  background: var(--gold-light);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); }

/* ─── SERVICES ───────────────────────────────────────────── */
#services { background: var(--bg); }
.services-header { margin-bottom: 56px; text-align: center; }
.services-header .section-label { justify-content: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
}
.service-card.coaching { background: var(--pale-yellow); }
.service-card.consulting { background: var(--blush); }
.service-card.facilitation { background: var(--lavender); }

.service-num {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.service-sub {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 20px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.coaching-expand { margin-top: 24px; border-top: 1px solid rgba(201, 168, 76, 0.2); }

.coaching-sub {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.coaching-sub-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dim);
  letter-spacing: 0.04em;
  text-align: left;
}
.coaching-sub-label svg { width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0; }
.coaching-sub[open] .coaching-sub-label svg { transform: rotate(180deg); }

.coaching-sub-body { padding: 0 0 20px; }
.coaching-sub-body h4 {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.coaching-sub-body p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 12px; color: var(--gold-dim); }
.service-link svg { width: 12px; height: 12px; }

/* ─── WHO I SERVE ────────────────────────────────────────── */
#who { background: var(--charcoal); color: #fff; }
#who .section-label { color: var(--gold-light); }
#who .section-label::before { background: var(--gold-light); }
#who h2 { color: #fff; }
#who h2 em { color: var(--gold-light); }
.who-header { text-align: center; margin-bottom: 56px; }
.who-header .section-label { justify-content: center; }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.who-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.who-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.who-card p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.75); }

/* ─── APPROACH ───────────────────────────────────────────── */
#approach { background: var(--warm-cream); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.approach-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.approach-pillars { display: flex; flex-direction: column; gap: 32px; }
.pillar { display: flex; gap: 20px; align-items: start; }
.pillar-num {
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.pillar h3 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pillar p { font-size: 14px; line-height: 1.75; color: var(--text-dim); }

/* ─── CREDENTIALS / BACKGROUND ──────────────────────────── */
#credentials { background: var(--warm-cream); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cred-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.cred-num {
  font-family: 'Jost', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.cred-role {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.cred-card p { font-size: 13px; line-height: 1.75; color: var(--text-dim); }

/* ─── CTA / CONTACT ──────────────────────────────────────── */
#contact { background: var(--gold-light); text-align: center; }
#contact .section-label { justify-content: center; color: var(--charcoal); }
#contact .section-label::before { background: var(--charcoal); }
#contact h2 { color: var(--charcoal); }
#contact .section-desc { color: var(--charcoal); opacity: 0.8; margin: 0 auto 16px; max-width: 520px; }

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contact-detail {
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.contact-detail:hover { opacity: 1; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn-secondary { border-color: rgba(58,46,40,0.25); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 48px 40px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--text-dim); }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
#about-hero { background: var(--bg); }
.about-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--surface);
  box-shadow: 0 8px 24px rgba(58,46,40,0.12);
  background: var(--warm-cream);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about-name h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 6px;
}
.about-title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

#about-bio { background: var(--bg); padding-top: 0; }
.about-bio-inner { max-width: 760px; margin: 0 auto; }
.about-bio-inner p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 22px;
}
blockquote {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
}

.about-stats {
  max-width: 760px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.about-stat { background: var(--surface); padding: 28px 20px; text-align: center; }
.about-stat-num {
  font-family: 'Jost', sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-page-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-side p { font-size: 15px; line-height: 1.8; color: var(--text-dim); margin-bottom: 24px; }
.contact-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-light); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 500; margin-bottom: 12px;
}
.contact-side .who-name { font-size: 16px; font-weight: 500; margin-bottom: 2px; }
.contact-side .who-role { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.contact-side ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-side li { font-size: 14px; color: var(--text-dim); padding-left: 20px; position: relative; }
.contact-side li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}
textarea { min-height: 110px; resize: vertical; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; }
.consent-row input { width: auto; }
.consent-row label { text-transform: none; font-size: 12px; letter-spacing: 0; font-weight: 400; }
.form-note { font-size: 12px; color: var(--text-dim); margin-top: 16px; }
.required-note { font-size: 12px; color: var(--text-dim); margin-bottom: 20px; }

/* ─── MOBILE MENU (simple, hidden by default) ────────────── */
.mobile-menu { display: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 72px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-page-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  #hero { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
