/* =====================================================================
   Bee Positive Coaching — Shared Stylesheet
   Palette, type, components for all five pages.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Allura&display=swap');

/* ---------- Tokens ---------- */
:root {
  --cream:        #F7F3EE;
  --header-bg:    #FFFFFF;
  --panel:        #FDFBF7;
  --border:       #E7DED2;
  --ink:          #1F2A44;     /* navy primary text */
  --ink-soft:     #3a4256;
  --indigo:       #2E3A5F;     /* hover/accent */
  --honey:        #B88A3B;
  --sage:         #7A8A6B;
  --sage-light:   #DDE5D2;
  --sage-text:    #3F4A33;

  --serif:        'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --script:       'Allura', 'Brush Script MT', cursive;

  --radius:       22px;
  --radius-sm:    14px;
  --radius-pill:  999px;

  --shadow-soft:  0 1px 2px rgba(31, 42, 68, 0.04), 0 8px 24px rgba(31, 42, 68, 0.05);

  --maxw:         1180px;
  --gutter:       clamp(20px, 4vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
a:hover, a:focus-visible { color: var(--indigo); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em 0;
}
h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 500;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }
em, .italic { font-style: italic; }

.lede {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-text);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.script {
  font-family: var(--script);
  color: var(--honey);
  font-size: 1.6em;
  line-height: 1;
  font-weight: 400;
}

.pull-quote {
  font-style: italic;
  color: var(--honey);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  border-top: 1px solid var(--honey);
  border-bottom: 1px solid var(--honey);
  padding: 22px 0;
  margin: 28px 0;
  max-width: 720px;
}

.ornament {
  text-align: center;
  color: var(--honey);
  font-size: 1.2rem;
  letter-spacing: 1.2em;
  margin: 60px 0 40px;
  user-select: none;
}
.ornament::before { content: "✦ ✦ ✦"; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(56px, 8vw, 100px) 0;
}
.section-tight {
  padding: clamp(40px, 6vw, 72px) 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.nav-logo span { line-height: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--indigo);
  color: var(--cream) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--indigo);
  color: var(--cream);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--ink);
  color: var(--cream);
}
.btn-honey {
  background: var(--honey);
  color: var(--cream);
}
.btn-honey:hover, .btn-honey:focus-visible {
  background: #9a7330;
  color: var(--cream);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

/* ---------- Panels ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}
.panel-sage {
  background: var(--sage-light);
  border-color: var(--sage);
}
.panel-navy {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.panel-navy h1, .panel-navy h2, .panel-navy h3, .panel-navy h4 { color: var(--cream); }
.panel-navy a { color: var(--cream); border-color: var(--cream); }
.panel-navy .eyebrow {
  background: rgba(247, 243, 238, 0.12);
  color: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 8vw, 90px) 0 clamp(40px, 6vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero-text h1 {
  margin-bottom: 24px;
}
.hero-text .lede {
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.hero-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  box-shadow: var(--shadow-soft);
  max-width: 80%;
  text-align: center;
}
.hero-overlay .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 6px;
}
.hero-overlay .tagline {
  font-family: var(--script);
  color: var(--honey);
  font-size: 1.95rem;
  line-height: 1;
}

/* ---------- Trust block ---------- */
.trust-block {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px) clamp(28px, 5vw, 56px);
  margin: 0 auto;
  max-width: var(--maxw);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  text-align: center;
}
.trust-block strong {
  font-weight: 600;
}

/* ---------- Archetype grid ---------- */
.archetype-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.archetype-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
}
.archetype-card h3 {
  margin: 0 0 8px 0;
  color: var(--honey);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
}
.archetype-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.archetype-more {
  margin-top: 24px;
  font-style: italic;
  color: var(--sage-text);
}

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table thead th {
  background: var(--sage-light);
  color: var(--sage-text);
  font-family: var(--serif);
  font-weight: 600;
  text-align: left;
  padding: 18px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 1.02rem;
  line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  color: var(--ink-soft);
  font-style: italic;
}
.compare-table td:last-child {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Paths grid (4 columns) ---------- */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.path-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.path-card .step {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--honey);
  line-height: 1;
  margin-bottom: 8px;
}
.path-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.path-card p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 18px;
}
.path-card .price {
  font-size: 0.92rem;
  color: var(--sage-text);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.path-card a.path-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--honey);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* ---------- Products / paid digital ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 28px;
}
.product-card .product-price {
  display: inline-block;
  font-weight: 600;
  color: var(--honey);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.product-card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.product-card p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- About grid ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.about-photo {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
}
.about-photo-small {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ---------- Meetup card ---------- */
.meetup-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.meetup-card .meetup-name {
  font-family: var(--script);
  color: var(--honey);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.meetup-card .meetup-detail {
  font-style: italic;
  color: var(--sage-text);
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.meetup-card p { color: var(--ink-soft); }

/* ---------- Email form ---------- */
.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  max-width: 560px;
}
.email-form input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--panel);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
}
.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(31, 42, 68, 0.08);
}
.email-form button {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: var(--serif);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.email-form button:hover, .email-form button:focus-visible {
  background: var(--indigo);
}
.email-form .form-note {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: var(--sage-text);
  margin-top: 6px;
  font-style: italic;
}

/* ---------- Filter bar (resources) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.filter-chip {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover, .filter-chip:focus-visible {
  border-color: var(--ink);
}
.filter-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- Resource cards ---------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
}
.resource-card .filter-tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-text);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  align-self: flex-start;
}
.resource-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.resource-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 16px;
}
.resource-card .resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--honey);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.resource-card .resource-meta .free {
  color: var(--sage-text);
}

/* ---------- Section heading helper ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: 12px;
}
.section-head .lede { margin-top: 8px; }

/* ---------- Lists ---------- */
.unstyled-list { list-style: none; padding: 0; margin: 0; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✦";
  color: var(--honey);
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.9em;
}

/* ---------- Membership badges ---------- */
.badge-strip {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.badge-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 22px;
  font-weight: 500;
}
.badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}
.badge {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .badge { width: 88px; height: 88px; }
  .badge-row { gap: 24px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.site-footer .container { max-width: var(--maxw); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-grid a { color: var(--cream); opacity: 0.85; display: block; padding: 4px 0; font-size: 0.98rem; }
.footer-grid a:hover, .footer-grid a:focus-visible { opacity: 1; color: var(--cream); }
.footer-grid p { color: var(--cream); opacity: 0.85; font-size: 0.98rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 1.15rem; font-weight: 600; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 238, 0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  opacity: 0.7;
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  z-index: 200;
}
.skip-link:focus {
  top: 16px;
  color: var(--cream);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 540px; margin: 0 auto; }
  .paths-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: left; }
  .about-photo { max-width: 280px; }
  .meetup-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 19px; }
  .nav-links { display: none; gap: 16px; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--header-bg);
    padding: 18px var(--gutter) 24px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
  }
  .nav-toggle { display: inline-block; }
  .archetype-grid { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .compare-table { font-size: 0.95rem; }
  .compare-table thead { display: none; }
  .compare-table tr {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }
  .compare-table tr:last-child { border-bottom: none; }
  .compare-table td {
    display: block;
    border: none;
    padding: 4px 0;
  }
  .compare-table td:first-child {
    color: var(--sage-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: normal;
  }
  .ornament { margin: 40px 0 28px; }
  .hero-overlay { left: 14px; bottom: 14px; padding: 12px 18px; }
  .hero-overlay .tagline { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-cta, .btn { display: none; }
  body { background: white; color: black; }
}
