@charset "utf-8";

/* ===========================================
   ESSEN - Main Stylesheet
   Full site rebuild - warm minimalism
   =========================================== */

/* -------------------------------------------
   1. CSS Variables
   ------------------------------------------- */
:root {
  --cream: #FAF9F5;
  --orange: #D97757;
  --orange-hover: #C4684A;
  --teal: #1A6B6B;
  --teal-hover: #155858;
  --black: #141413;
  --gray: #B0AEA5;
  --secondary: #5A5650;
  --border: #E8E6DC;
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(20, 20, 19, 0.04), 0 1px 2px rgba(20, 20, 19, 0.06);
  --shadow-md: 0 4px 12px rgba(20, 20, 19, 0.06), 0 2px 4px rgba(20, 20, 19, 0.04);
  --shadow-lg: 0 8px 24px rgba(20, 20, 19, 0.08), 0 4px 8px rgba(20, 20, 19, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
}

/* -------------------------------------------
   2. Reset & Base
   ------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(217, 119, 87, 0.2);
  color: var(--black);
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

ul, ol {
  list-style: none;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--black);
  color: var(--cream);
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-to-content:focus {
  left: 0;
}

/* -------------------------------------------
   3. Typography
   ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 1rem;
}

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

.label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 1.6;
  max-width: 560px;
}

.lead {
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 1.65;
}

.muted {
  color: var(--gray);
}

.text-secondary {
  color: var(--secondary);
}

small, .small {
  font-size: 0.75rem;
}

/* -------------------------------------------
   4. Navigation
   ------------------------------------------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a.active {
  color: var(--black);
  font-weight: 600;
}

.nav-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--cream) !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--orange-hover);
  color: var(--cream) !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Space for fixed nav */
body {
  padding-top: 64px;
}

/* -------------------------------------------
   5. Buttons
   ------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius: var(--radius-sm);
  border: none;
  line-height: 1;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--cream);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--cream);
}

.btn-secondary {
  background: var(--teal);
  color: var(--cream);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border: 2px solid var(--black);
}

.btn-dark:hover {
  background: transparent;
  color: var(--black);
}

/* -------------------------------------------
   6. Hero Sections
   ------------------------------------------- */
.hero {
  padding: 2rem 0 1.5rem;
  text-align: center;
}

.hero .wrap {
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-eyebrow .hero-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-eyebrow .label {
  margin-bottom: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--secondary);
}

.hero .hero-sub {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-top: 1.5rem;
}

/* Proof bar */
.proof-bar {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.proof-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proof-bar-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  flex-shrink: 0;
}

.proof-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  background: var(--cream);
}

/* -------------------------------------------
   7. Cards (general)
   ------------------------------------------- */
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-featured {
  border-left: 3px solid var(--teal);
}

/* -------------------------------------------
   8. Testimonial Cards
   ------------------------------------------- */
.testimonials-sec {
  padding: 1.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.t-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.t-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  pointer-events: none;
}

.t-quote {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--secondary);
  padding-top: 1.25rem;
  flex: 1;
}

.t-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.t-person {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.t-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.t-role {
  font-size: 0.75rem;
  color: var(--gray);
}

.t-context,
.t-event {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-top: 0.15rem;
}

/* -------------------------------------------
   9. Problem Section
   ------------------------------------------- */
.problem {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.problem-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.problem-card .icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--secondary);
}

/* -------------------------------------------
   10. Services / Pricing
   ------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.svc-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.svc-card .btn {
  margin-top: auto;
}

.svc-card:hover {
  box-shadow: var(--shadow-sm);
}

.svc-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.svc-card p {
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.svc-price {
  font-size: 0.8rem;
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.svc-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
}

.svc-link:hover {
  color: var(--orange-hover);
  text-decoration: underline;
}

/* -------------------------------------------
   11. Audience Section
   ------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.audience-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.audience-icon {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--teal);
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--secondary);
}

.not-for {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.not-for h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.not-for li {
  font-size: 0.875rem;
  color: var(--gray);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.not-for li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--gray);
}

/* Home page element styles */
.subtitle {
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 0.8rem;
  color: var(--gray);
  display: block;
  margin: 0.25rem 0;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.transition-text {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal);
  margin-top: 1.5rem;
}

.problem-icon {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.svc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.svc-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.svc-card .svc-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--black);
  border-top: none;
  padding-top: 0;
  margin-bottom: 0.25rem;
}

.svc-per {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

.svc-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.svc-features li {
  font-size: 0.85rem;
  color: var(--secondary);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.svc-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.svc-card.featured {
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-md);
}

.section-sub {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.guide-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.lead-magnet .guide-features li {
  font-size: 0.9rem;
  color: rgba(250, 249, 245, 0.85);
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.lead-magnet .guide-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: rgba(250, 249, 245, 0.6);
  font-weight: 600;
}

.guide-teaser {
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.guide-teaser a {
  color: rgba(250, 249, 245, 0.7);
  text-decoration: underline;
}

.guide-teaser a:hover {
  color: var(--cream);
}

/* -------------------------------------------
   11b. Home Page Sections (services, audience, cta-block)
   ------------------------------------------- */
.services {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.audience {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.cta-block {
  padding: 2rem 0;
  text-align: center;
}

.cta-block.dark {
  background: var(--black);
  color: var(--cream);
  margin-bottom: 0;
  padding: 2.5rem 0;
}

.cta-block.dark h2 {
  color: var(--cream);
}

.cta-block.dark p {
  color: rgba(250, 249, 245, 0.75);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .reassurance-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.cta-block .reassurance-list li {
  font-size: 0.8rem;
  color: rgba(250, 249, 245, 0.5);
}

/* -------------------------------------------
   12. Lead Magnet Section
   ------------------------------------------- */
.lead-magnet {
  background: var(--teal);
  color: var(--cream);
  padding: 2rem 0;
  border-radius: var(--radius-md);
}

.lead-magnet h2 {
  color: var(--cream);
}

.lead-magnet p {
  color: rgba(250, 249, 245, 0.85);
}

.lead-magnet .label {
  color: rgba(250, 249, 245, 0.6);
}

.lead-magnet input[type="email"],
.lead-magnet input[type="text"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(250, 249, 245, 0.25);
  background: rgba(250, 249, 245, 0.1);
  color: var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease;
}

.lead-magnet input::placeholder {
  color: rgba(250, 249, 245, 0.5);
}

.lead-magnet input:focus {
  outline: none;
  border-color: rgba(250, 249, 245, 0.5);
}

.lead-magnet .btn-primary {
  background: var(--cream);
  color: var(--teal);
  border-color: var(--cream);
}

.lead-magnet .btn-primary:hover {
  background: rgba(250, 249, 245, 0.9);
}

/* -------------------------------------------
   13. Process / Steps
   ------------------------------------------- */
.process-steps {
  margin-top: 2rem;
}

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
  position: relative;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--orange);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}


/* -------------------------------------------
   14. FAQ (details/summary accordion)
   ------------------------------------------- */
.faq-sec {
  padding: 1.5rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  transition: color 0.15s ease;
}

.faq-item summary:hover {
  color: var(--orange);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-answer,
.faq-item .faq-a {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.65;
}

/* Button-based FAQ (setup, masterclass, advisory pages) */
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s ease;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  display: none;
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.65;
  padding-top: 0.5rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* -------------------------------------------
   15. Events Section
   ------------------------------------------- */
.in-room {
  padding: 1.5rem 0;
}

.events-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.ev-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ev-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.ev-img-single img,
.ev-img-pair img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ev-meta {
  padding: 1.25rem;
}

.ev-meta .label {
  margin-bottom: 0.25rem;
}

.ev-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.ev-meta p {
  font-size: 0.8rem;
  color: var(--secondary);
}

/* Event showcase (work page) */
.events-full {
  padding: 1.5rem 0;
}

.ev-showcase {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.ev-showcase-hdr {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.ev-showcase-hdr h3 {
  font-size: 1rem;
}

.ev-showcase-hdr p {
  font-size: 0.8rem;
  color: var(--secondary);
  margin-top: 0.2rem;
}

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

.ev-photos-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ev-photos-3 img,
.ev-photos-2 img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.ev-quotes {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
}

.ev-quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ev-q p {
  font-size: 0.8rem;
  color: var(--secondary);
  font-style: italic;
  line-height: 1.55;
}

.ev-q span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.4rem;
  color: var(--black);
}

.pmobp-screenshots {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2px;
}

.pmobp-screenshots img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------
   16. Recommendations
   ------------------------------------------- */
.coworker-recs {
  padding: 1.5rem 0;
}

.coworker-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.4rem;
  margin-bottom: 2rem;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rec-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.rec-text {
  font-size: 0.85rem;
  color: var(--secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.rec-attr {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.rec-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}

.rec-role {
  font-size: 0.75rem;
  color: var(--gray);
}

/* -------------------------------------------
   17. About Page
   ------------------------------------------- */
.about-intro {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-text h1 {
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 0.925rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-pull {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

/* Credentials table */
.creds-sec {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cred-table,
.credentials-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.cred-table tr,
.credentials-table tr {
  border-top: 1px solid var(--border);
}

.cred-table tr:last-child,
.credentials-table tr:last-child {
  border-bottom: 1px solid var(--border);
}

.cred-table td,
.credentials-table td {
  padding: 1rem 0;
  vertical-align: top;
}

.cred-table td:first-child,
.credentials-table td:first-child {
  width: 40%;
  font-size: 0.875rem;
  font-weight: 600;
  padding-right: 2rem;
}

.cred-table td:last-child,
.credentials-table td:last-child {
  font-size: 0.875rem;
  color: var(--secondary);
}

/* Story sections */
.mm-sec,
.story-sec {
  padding: 1.5rem 0;
}

.mm-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mm-text p {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.mm-spec {
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}

.mm-spec:last-child {
  border-bottom: 1px solid var(--border);
}

.mm-spec-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.mm-spec-val {
  font-size: 0.875rem;
  font-weight: 500;
}

/* -------------------------------------------
   18. Contact Page
   ------------------------------------------- */
.contact-body {
  padding: 1.5rem 0;
}

.contact-grid,
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h1 {
  margin-bottom: 1rem;
}

.contact-left > p {
  font-size: 0.925rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

/* Calendly embed */
.calendly-embed {
  min-height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Contact paths */
.path-list {
  margin-top: 2rem;
}

.path-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
}

.path-item:last-child {
  border-bottom: 1px solid var(--border);
}

.path-num {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  padding-top: 0.15rem;
}

.path-content h4 {
  margin-bottom: 0.15rem;
  font-size: 0.875rem;
}

.path-content p {
  font-size: 0.8rem;
  color: var(--secondary);
  margin: 0;
}

/* -------------------------------------------
   19. Blog
   ------------------------------------------- */
.blog-body {
  padding: 1.5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.post-card,
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.post-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag,
.category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Featured blog card */
.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-featured .blog-card-img {
  aspect-ratio: auto;
  height: 100%;
}

.blog-featured .blog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem;
}

/* Blog article */
.blog-article-view {
  padding: 2.5rem 1rem;
  flex-grow: 1;
}

.blog-article {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--black);
}

.blog-article-meta {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-article h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 1rem 0;
}

.blog-article h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-article h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.blog-article p {
  margin-bottom: 1.5rem;
}

.blog-article ul,
.blog-article ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-article li {
  margin-bottom: 0.5rem;
}

.blog-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.15s ease;
  font-weight: 500;
}

.blog-back:hover {
  color: var(--black);
}

/* Blog post single view (Substack-inspired) */
.post-single {
  padding: 2.5rem 1rem 3rem;
}

.post-single .wrap {
  max-width: 680px;
  margin: 0 auto;
}

.post-single .blog-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.post-single .blog-back:hover {
  color: var(--black);
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.post-header .label {
  margin-bottom: 0.75rem;
}

.post-header h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0;
}

.post-meta {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

.post-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--black);
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.post-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--secondary);
}

.post-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-body a:hover {
  color: var(--orange-hover);
}

.post-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.post-body code {
  background: var(--border);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.post-body pre {
  background: var(--black);
  color: var(--cream);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.post-body pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  color: inherit;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.post-body strong {
  font-weight: 700;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-footer .cta-block {
  text-align: center;
  padding: 2rem 0 0;
}

.post-footer .cta-block h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-footer .cta-block p {
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

/* -------------------------------------------
   20. Resources
   ------------------------------------------- */
.resources-body {
  padding: 1.5rem 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.resource-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--cream);
}

.resource-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.resource-icon {
  font-size: 1.75rem;
}

.resource-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.resource-card p {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.resource-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.resource-soon {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--orange);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

/* Comparison table (resources) */
.mc-comparison {
  padding: 1.5rem 0;
}

.mc-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.mc-compare-table th,
.mc-compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.mc-compare-table th {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--black);
}

.mc-compare-table td:first-child {
  font-weight: 500;
  color: var(--black);
}

.mc-highlight-col {
  background: rgba(217, 119, 87, 0.05);
}

.mc-check {
  color: var(--orange);
  font-weight: 600;
}

.mc-dash {
  color: var(--gray);
}

/* -------------------------------------------
   21. Footer
   ------------------------------------------- */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 2.5rem 0 1.25rem;
  border-top: 1px solid rgba(250, 249, 245, 0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.55;
  margin-top: 0.5rem;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 1.25rem 2rem 0;
  border-top: 1px solid rgba(250, 249, 245, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 249, 245, 0.35);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cream);
}


/* -------------------------------------------
   23. Forms
   ------------------------------------------- */
.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-lbl {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--black);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

/* Focus states for all form inputs (inline-styled or classed) */
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(217, 119, 87, 0.15);
}

form textarea {
  font-family: var(--font-body);
}

.form-note {
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

/* -------------------------------------------
   24. Utility Classes
   ------------------------------------------- */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap-w {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section,
.section-block {
  padding: 1.5rem 0;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-dark,
.bg-black {
  background-color: var(--black);
  color: var(--cream);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4 {
  color: var(--cream);
}

.bg-dark p,
.bg-black p {
  color: rgba(250, 249, 245, 0.7);
}

.bg-teal {
  background-color: var(--teal);
  color: var(--cream);
}

.bg-teal h1, .bg-teal h2, .bg-teal h3, .bg-teal h4 {
  color: var(--cream);
}

.bg-teal p {
  color: rgba(250, 249, 245, 0.8);
}

/* .bg-alt removed — #F5F3EE is a retired colour */

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.page {
  display: block;
}

/* Page headers */
.pg-header {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--border);
}

.pg-header h1 {
  margin-bottom: 0.5rem;
}

.pg-header p {
  font-size: 1rem;
  color: var(--secondary);
  max-width: 560px;
}

/* -------------------------------------------
   25. Masterclass / Curriculum
   ------------------------------------------- */
.mc-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.mc-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mc-tab:hover {
  color: var(--black);
}

.mc-tab.active {
  color: var(--black);
  border-bottom-color: var(--orange);
}

.mc-track-content {
  display: none;
}

.mc-track-content.active {
  display: block;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mc-curriculum {
  padding: 1.5rem 0;
}

.mc-curriculum .label {
  display: block;
  margin-bottom: 0.5rem;
}

.mc-curriculum h2 {
  margin-bottom: 0.25rem;
}

.mc-curriculum-note {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.mc-module-list {
  border-top: 1px solid var(--border);
}

.mc-module {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.mc-module-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.15rem;
}

.mc-module-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.mc-module-body p {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.55;
  margin: 0;
}

.mc-tool-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.5rem;
  margin-right: 0.3rem;
}

.mc-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mc-badge-free {
  background: var(--cream);
  color: var(--black);
  border: 1px solid var(--border);
}

.mc-badge-paid {
  background: var(--orange);
  color: var(--cream);
}

/* Accordion (masterclass) */
.mc-accordion {
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
}

.mc-accordion details {
  border-bottom: 1px solid var(--border);
}

.mc-accordion summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
}

.mc-accordion summary::-webkit-details-marker {
  display: none;
}

.mc-accordion summary::marker {
  display: none;
  content: "";
}

.mc-accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 400;
}

.mc-accordion details[open] summary::after {
  content: "\2212";
}

.mc-acc-content {
  padding: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--secondary);
}

.mc-acc-content p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Pull quote */
.mc-pull-quote-sec {
  padding: 1.5rem 0;
}

.mc-pull-quote {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.mc-pull-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 1rem;
}

.mc-pull-quote footer {
  font-size: 0.85rem;
  background: none;
  color: inherit;
  border-top: none;
  padding: 0;
}

.mc-pull-quote cite {
  font-weight: 600;
  font-style: normal;
  color: var(--black);
}

.mc-pull-quote footer span {
  display: block;
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* Comparison CTAs */
.mc-comparison-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Group sessions */
.mc-group-sec {
  padding: 1.5rem 0;
}

.mc-group-body {
  font-size: 0.925rem;
  color: var(--secondary);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Final CTA */
.mc-final-cta {
  padding: 1.5rem 0;
  text-align: center;
}

.mc-final-sub {
  font-size: 0.925rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.mc-final-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mc-claude-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1.5rem;
  font-style: italic;
}

/* -------------------------------------------
   26. Setup Page
   ------------------------------------------- */
.setup-hero {
  padding: 2.5rem 0 1rem;
}

.setup-section {
  padding: 1.5rem 0;
}

.setup-deliverables {
  border-top: 1px solid var(--border);
}

.setup-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.setup-item-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.1rem;
}

.setup-item-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.setup-item-body p {
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.55;
  margin: 0;
}

.setup-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.setup-step {
  text-align: center;
  padding: 1.25rem;
}

.setup-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.setup-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.setup-step p {
  font-size: 0.85rem;
  color: var(--secondary);
  line-height: 1.5;
}

.setup-pricing {
  text-align: center;
  padding: 1.5rem 0;
}

.setup-price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.setup-price-note {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

/* Sticky CTA bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 249, 245, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(20, 20, 19, 0.05);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.85rem;
  font-weight: 500;
}

.sticky-cta-text span {
  color: var(--gray);
  margin: 0 0.5rem;
}

/* -------------------------------------------
   27. Service Details
   ------------------------------------------- */
.svc-detail {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.svc-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.svc-sidebar .label {
  margin-bottom: 0.5rem;
}

.svc-sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.svc-sidebar .s-price {
  font-size: 0.9rem;
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.svc-main p {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.step-content h4 {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
}

/* -------------------------------------------
   28. Work Page
   ------------------------------------------- */
.work-body {
  padding: 1.5rem 0;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr 2rem;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.article-card:last-child {
  border-bottom: 1px solid var(--border);
}

.art-label {
  margin-bottom: 0.2rem;
}

.art-h {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.art-p {
  font-size: 0.875rem;
  color: var(--secondary);
}

.art-arrow {
  font-size: 1.1rem;
  color: var(--gray);
  padding-top: 0.2rem;
  text-align: right;
}

/* -------------------------------------------
   29. Skeleton / Loading
   ------------------------------------------- */
.session-skeleton {
  background: #F5F3EE;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.skel-line {
  background: var(--border);
  border-radius: var(--radius-sm);
  height: 12px;
  margin-bottom: 0.75rem;
  animation: skel-pulse 1.4s ease-in-out infinite;
}

.skel-line.wide { width: 70%; }
.skel-line.med { width: 45%; }
.skel-line.short { width: 30%; }

@keyframes skel-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* -------------------------------------------
   30. Tooltip
   ------------------------------------------- */
.mc-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--gray);
  cursor: help;
}

.mc-tooltip .mc-tooltip-text {
  visibility: hidden;
  width: 240px;
  background-color: var(--black);
  color: var(--cream);
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.mc-tooltip:hover .mc-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.mc-tool-badge::after {
  content: attr(aria-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--cream);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
  width: 240px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 10;
}

.mc-tool-badge:hover::after,
.mc-tool-badge:focus::after {
  opacity: 1;
  visibility: visible;
}

.mc-tool-badge:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* -------------------------------------------
   31. Responsive - Tablet (1024px)
   ------------------------------------------- */
@media (max-width: 1024px) {
  .testimonials-grid,
  .rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .audience-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .setup-timeline {
    gap: 1rem;
  }
}

/* -------------------------------------------
   32. Responsive - Mobile (768px)
   ------------------------------------------- */
@media (max-width: 768px) {
  body {
    padding-top: 56px;
  }

  .nav-inner {
    height: 56px;
  }

  /* Typography scale down */
  h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  /* Navigation collapses */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }

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

  /* Single column grids */
  .problem-grid,
  .services-grid,
  .audience-grid,
  .events-row,
  .testimonials-grid,
  .rec-grid,
  .blog-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  /* 2-col layouts go single */
  .svc-detail-inner,
  .about-intro-inner,
  .mm-inner,
  .contact-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Forms stack */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Event photos */
  .ev-photos-3 {
    grid-template-columns: 1fr 1fr;
  }

  .ev-quote-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pmobp-screenshots {
    grid-template-columns: 1fr;
  }

  /* Blog featured */
  .blog-featured {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Buttons full width on mobile */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .mc-comparison-ctas,
  .mc-final-btns {
    flex-direction: column;
    align-items: stretch;
  }

  /* Masterclass */
  .mc-module {
    gap: 0.75rem;
  }

  .mc-compare-table {
    font-size: 0.82rem;
  }

  .mc-compare-table th,
  .mc-compare-table td {
    padding: 0.65rem 0.5rem;
  }

  .mc-tabs {
    overflow-x: auto;
    gap: 0;
  }

  .mc-tab {
    white-space: nowrap;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  /* Setup */
  .setup-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sticky-cta-bar {
    padding: 0.65rem 1rem;
  }

  /* Section padding */
  .section,
  .section-block {
    padding: 2rem 0;
  }

  .wrap {
    padding: 0 1.25rem;
  }

  /* Force all inline-style grids to stack on mobile */
  .wrap > [style*="grid-template-columns"],
  .wrap [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact page 2-col → stack */
  .contact-inner,
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* About headshot constrain on mobile */
  [style*="grid-template-columns:280px"] img {
    max-width: 200px !important;
    display: block;
    margin: 0 auto;
  }
}

/* -------------------------------------------
   33. Print Styles
   ------------------------------------------- */
@media print {
  #nav,
  .hamburger,
  .sticky-cta-bar,
  footer {
    display: none;
  }

  body {
    padding-top: 0;
    background: white;
    color: black;
  }

  .wrap {
    max-width: 100%;
    padding: 0;
  }
}
