/* ==========================================================================
   Move • Mind • Momentum — Design tokens (matched from the live Base44 site)
   ========================================================================== */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F4F0EC;
  --bg-alt-2: #EDE8E0;
  --dark: #2C2C2C;
  --dark-soft: rgba(255, 255, 255, 0.72);
  --dark-soft-2: rgba(255, 255, 255, 0.55);
  --ink: #2B231D;
  --ink-soft: rgba(43, 35, 29, 0.72);
  --ink-faint: rgba(43, 35, 29, 0.5);
  --accent: #B27D34;
  --accent-dark: #96682A;
  --border: #E2DCD5;
  --border-amber: #F2DFB8;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.eyebrow.on-dark { color: #D9A85C; }

h1 { font-size: 72px; line-height: 1.0; letter-spacing: -0.01em; }
h2 { font-size: 40px; line-height: 1.12; }
h3 { font-size: 26px; line-height: 1.25; }

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 20px rgba(178,125,52,0.28); }

.btn-secondary {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  font-weight: 500;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--ink); }

.btn-on-dark {
  background: transparent;
  color: var(--dark-soft);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 500;
}
.btn-on-dark:hover { border-color: var(--accent); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.link-inline {
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.link-inline:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a:not(.btn) {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.main-nav a:not(.btn):hover { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

/* ==========================================================================
   Sections / bands
   ========================================================================== */

section { position: relative; }

.band {
  padding: 112px 0;
}
.band-tight { padding: 72px 0; }

.band-alt { background: var(--bg-alt); }
.band-alt-2 { background: var(--bg-alt-2); }

.band-dark {
  background: var(--dark);
  color: rgba(255,255,255,0.88);
}
.band-dark h1, .band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: var(--dark-soft); }
.band-dark .lede { color: var(--dark-soft); }

.quote-strip {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}
.quote-strip p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.quote-block {
  text-align: center;
  padding: 96px 24px;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.quote-block cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

/* Reveal-on-scroll (subtle, respects reduced motion) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,245,0.97) 0%, rgba(250,248,245,0.88) 35%, rgba(250,248,245,0.45) 65%, rgba(250,248,245,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
  max-width: 680px;
}
.hero-content h1 { margin-bottom: 28px; }
.hero-content .lede { max-width: 520px; margin-bottom: 8px; }
.hero-content .btn-row { margin-top: 36px; }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.card-amber { border: 2px solid var(--border-amber); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 9999px;
  background: var(--bg-alt-2);
  color: var(--ink-soft);
}
.card-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

/* Stats */
.stats-row {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin: 44px 0;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--dark-soft-2);
  max-width: 180px;
  line-height: 1.45;
}

/* About / Why Debbie image + text layout */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Method phases */
.phase {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}
.phase:first-child { border-top: none; padding-top: 0; }
.phase-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.phase-name { font-size: 34px; }
.phase-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.phase-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.phase-list { list-style: none; margin: 0; padding: 0; }
.phase-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-soft);
}
.phase-list li:first-child { border-top: none; }
.phase-close { font-weight: 600; color: var(--ink); margin-top: 16px; font-size: 15px; }

/* Speaking cards */
.talk-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 100%;
}
.talk-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.talk-card h3 { margin-bottom: 10px; }
.talk-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-nav a:hover { color: #fff; }
.footer-email { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-bottom { font-size: 13px; text-align: center; color: rgba(255,255,255,0.45); }

/* Section heading group */
.heading-group { max-width: 720px; margin-bottom: 56px; }
.heading-group.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Workshops-page specific
   ========================================================================== */

.wk-hero {
  padding: 156px 0 90px;
  text-align: center;
}
.wk-hero .eyebrow { text-align: center; }
.wk-hero h1 { margin: 0 auto 26px; }
.wk-hero .lede { max-width: 620px; margin: 0 auto 40px; }
.wk-hero .btn-row { justify-content: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h4 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

.theme-item {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.theme-item:first-child { border-top: none; }
.theme-header {
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: inherit;
}
.theme-glyph {
  font-size: 22px;
  color: var(--accent);
  width: 34px;
  flex-shrink: 0;
}
.theme-title-group { flex: 1; }
.theme-title-group h3 { margin-bottom: 4px; }
.theme-subtitle { font-size: 14.5px; color: var(--ink-soft); }
.theme-toggle {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  transition: transform 0.2s ease;
}
.theme-item.open .theme-toggle { transform: rotate(45deg); }

.theme-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.theme-item.open .theme-body { grid-template-rows: 1fr; }
.theme-body-inner { overflow: hidden; }

.theme-desc {
  padding: 20px 0 8px 56px;
  color: var(--ink-soft);
  max-width: 640px;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 16px 0 8px 56px;
}
.tier {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 26px;
}
.tier.signature { background: #FBF3E4; border: 1px solid var(--border-amber); }
.tier-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}
.tier-format {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier h4 { font-size: 18px; margin-bottom: 12px; }
.tier ul { list-style: none; margin: 0 0 16px; padding: 0; }
.tier li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 5px 0 5px 16px;
  position: relative;
}
.tier li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.tier-seed {
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-faint);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.theme-cta { padding: 8px 0 0 56px; }

.enh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.enh-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.enh-card h4 { font-size: 17px; margin-bottom: 8px; }
.enh-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

.workshop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.workshop-card .card-eyebrow { letter-spacing: 0.08em; }
.workshop-card h3 { font-size: 22px; margin-bottom: 10px; }
.workshop-card .talk-tagline { font-size: 16px; margin-bottom: 12px; }
.workshop-card p.desc { font-size: 14.5px; color: var(--ink-soft); }
.workshop-card ul { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.workshop-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0 6px 18px;
  position: relative;
}
.workshop-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  .split { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/10; }
  .phase-body { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .steps-grid, .enh-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; padding-left: 0; }
  .theme-desc, .theme-cta { padding-left: 0; }
  .stats-row { gap: 36px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  h1 { font-size: 38px; }
  h2 { font-size: 27px; }
  .band { padding: 72px 0; }
  .grid-2, .grid-3, .steps-grid, .enh-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 0 72px; }
  .hero { min-height: auto; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .quote-block blockquote, .quote-strip p { font-size: 22px; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
