/* ============================================================
   LEVERAGED BY AVA — styles.css
   Design system: Blush #DEB8C0 · Mocha #8C6755 · Charcoal #1A1A2E · Cream #FAF7F2
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --rose:        #DEB8C0;
  --rose-dark:   #C4A0AB;
  --rose-light:  #F7EFF1;
  --gold:        #8C6755;
  --gold-dark:   #7A5848;
  --charcoal:    #1A1A2E;
  --cream:       #FAF7F2;
  --white:       #FFFFFF;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --shadow-card:    0 4px 24px rgba(26,26,46,0.08);
  --shadow-btn:     0 6px 20px rgba(222,184,192,0.55);
  --shadow-nav:     0 2px 20px rgba(26,26,46,0.08);
  --border-subtle:  1px solid rgba(26,26,46,0.1);
  --border-glass:   1px solid rgba(255,255,255,0.12);

  --transition: 0.2s ease;
  --radius:     4px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.bg-charcoal { background: var(--charcoal); }
.bg-cream    { background: var(--cream); }

section {
  padding: 100px 0;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}

.accent {
  color: var(--rose);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  font-weight: 700;
  position: relative;
}

/* Rose underline on section h2s */
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--rose);
  margin-top: 16px;
}
.section-header.centered h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 64px;
}
.section-header.centered,
.section-header--light.centered {
  text-align: center;
}

.section-header--light h2 {
  color: var(--white);
}
.section-header--light .label {
  color: var(--rose);
}

.section-sub {
  font-size: var(--text-base);
  color: rgba(26,26,46,0.65);
  max-width: 600px;
  line-height: 1.75;
  margin-top: 20px;
}
.section-sub--light {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid var(--rose);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

.btn-secondary,
a.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--charcoal);
  padding: 13px 31px;
  border: 1.5px solid var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover,
a.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--rose);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--rose-dark);
  box-shadow: var(--shadow-btn);
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  padding: 11px 20px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 24px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-footer:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.tag--rose    { background: var(--rose);    color: var(--white); }
.tag--gold    { background: var(--gold);    color: var(--white); }
.tag--charcoal { background: var(--charcoal); color: var(--white); }
.tag--rose-sm {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-top: 8px;
}

/* ============================================================
   FORMS — EMAIL OPT-IN
   ============================================================ */
.email-form {
  display: flex;
  gap: 0;
  max-width: 520px;
}
.email-form input[type="email"] {
  flex: 1;
  height: 52px;
  padding: 0 18px;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid rgba(26,26,46,0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.email-form input[type="email"]:focus {
  border-color: var(--rose);
}
.email-form .btn-primary {
  height: 52px;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0 24px;
}

/* Light form (on dark bg) */
.email-form--light input[type="email"] {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.email-form--light input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}
.email-form--light input[type="email"]:focus {
  border-color: var(--rose);
}

.hero-form-wrap {
  margin-top: 36px;
}

.form-micro {
  margin-top: 12px;
  font-size: var(--text-xs);
  color: rgba(26,26,46,0.55);
  font-weight: 300;
}
.form-micro--dim {
  color: rgba(26,26,46,0.4);
}
.form-micro--light {
  color: rgba(255,255,255,0.55);
}
.form-micro--dim-light {
  color: rgba(255,255,255,0.4);
}

.form-success {
  margin-top: 12px;
  font-size: var(--text-sm);
  color: var(--rose);
  font-weight: 500;
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px dashed var(--rose);
  border-radius: var(--radius);
}

/* ============================================================
   CHECKLISTS
   ============================================================ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(26,26,46,0.75);
}
.checklist li::before {
  content: '✓';
  color: var(--rose);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist--dark li {
  color: rgba(26,26,46,0.75);
}
.checklist--light li {
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#main-nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
#main-nav.scrolled .nav-wordmark {
  color: var(--charcoal);
}

/* Logo mark in nav — sole clickable element */
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-wordmark:hover .nav-logo-mark {
  opacity: 0.85;
  transform: scale(1.05);
}

/* Homepage: nav starts with visible cream bg (light hero) */
body.light-hero #main-nav {
  background: rgba(250,247,242,0.9);
  box-shadow: var(--shadow-nav);
}
body.light-hero .nav-wordmark {
  color: var(--charcoal);
}
body.light-hero .nav-link {
  color: rgba(26,26,46,0.65);
}
body.light-hero .nav-link:hover,
body.light-hero .nav-link.active {
  color: var(--rose-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--rose);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
#main-nav.scrolled .nav-link {
  color: rgba(26,26,46,0.7);
}
#main-nav.scrolled .nav-link:hover,
#main-nav.scrolled .nav-link.active {
  color: var(--rose);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--rose);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.mobile-nav-overlay ul a {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  color: var(--charcoal);
  padding: 8px 0;
  display: block;
  transition: color var(--transition);
}
.mobile-nav-overlay ul a:hover {
  color: var(--rose);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-nav-close:hover {
  color: var(--rose);
}
.mobile-nav-overlay .btn-primary {
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, var(--cream) 0%, var(--rose-light) 60%, #F0E6E9 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='%23DEB8C0' stroke-width='0.5' stroke-opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* When Ava has a photo, add it as bg: uncomment and set src
   #hero { background-image: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.4) 100%), url('assets/images/ava-hero.jpg'); background-size: cover; background-position: center top; } */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy .label {
  color: var(--rose);
  margin-bottom: 20px;
}

.hero-copy h1 {
  color: var(--charcoal);
  margin-bottom: 0;
}

.hero-body {
  margin-top: 24px;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(26,26,46,0.65);
  max-width: 480px;
  line-height: 1.75;
}

/* Hero image placeholder */
.hero-image-col {
  display: none;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
}

/* Rose border offset for portrait */
.hero-image-col .img-placeholder {
  box-shadow: 8px 8px 0 0 var(--rose);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SOCIAL BAR
   ============================================================ */
#social-bar {
  background: var(--cream);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding: 0;
}

.social-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 80px;
  flex-wrap: wrap;
}

.social-bar-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(26,26,46,0.7);
  transition: color var(--transition);
}
.social-link:hover {
  color: var(--rose);
}

.social-divider {
  color: rgba(26,26,46,0.3);
  font-size: 1rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  order: 2;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}

.about-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

.about-copy {
  order: 1;
}

.about-copy .label {
  color: var(--rose);
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p {
  color: rgba(26,26,46,0.75);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: var(--border-subtle);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  color: rgba(26,26,46,0.6);
  font-weight: 400;
}

/* ============================================================
   FREE RESOURCES
   ============================================================ */
#free-resources {
  background: var(--rose-light);
}

#free-resources .section-header--light {
  text-align: center;
  margin-bottom: 48px;
}
#free-resources .section-header--light h2 {
  color: var(--charcoal);
}
#free-resources .section-header--light .label {
  color: var(--gold);
}

.lead-magnet-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.lead-magnet-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.lead-magnet-body {
  font-size: 0.95rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.75;
  font-weight: 300;
}

.lead-magnet-card .email-form {
  margin-top: 28px;
}

.lead-magnet-card .email-form input[type="email"] {
  background: var(--cream);
  border-color: rgba(26,26,46,0.15);
  color: var(--charcoal);
}
.lead-magnet-card .email-form input[type="email"]::placeholder {
  color: rgba(26,26,46,0.4);
}
.lead-magnet-card .email-form input[type="email"]:focus {
  border-color: var(--rose);
}

/* ============================================================
   LEVER FRAMEWORK
   ============================================================ */
#lever-framework {
  background: var(--cream);
}

#lever-framework .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.lever-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lever-card {
  background: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.lever-card:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.lever-letter {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.lever-divider {
  border: none;
  border-top: var(--border-subtle);
  margin: 16px 0;
}

.lever-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.lever-card p {
  font-size: 0.88rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.7;
}

/* ============================================================
   SERVICES / WORK WITH ME
   ============================================================ */
#work-with-me {
  background: var(--white);
}

#work-with-me .section-header {
  text-align: center;
  margin-bottom: 64px;
}
#work-with-me .section-header h2::after {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(26,26,46,0.12);
  transform: translateY(-2px);
}

.service-card--featured {
  border-color: var(--rose);
  border-width: 2px;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.service-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.service-body {
  font-size: 0.9rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.75;
  margin-bottom: 4px;
}

.service-card .btn-primary,
.service-card .btn-secondary,
.service-card a.btn-primary,
.service-card a.btn-secondary {
  margin-top: 24px;
  align-self: flex-start;
}

.service-note {
  font-size: var(--text-xs);
  color: rgba(26,26,46,0.45);
  font-weight: 300;
  line-height: 1.5;
  margin-top: 12px;
}

.phase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
}
.phase-list p {
  font-size: var(--text-sm);
  color: rgba(26,26,46,0.75);
  line-height: 1.6;
}

.replaces-list {
  margin-top: 20px;
}
.replaces-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.replaces-list p {
  font-size: var(--text-sm);
  color: rgba(26,26,46,0.65);
  line-height: 1.6;
  padding-left: 4px;
}

/* How It Works Strip */
.how-it-works {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hiw-step {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.hiw-number {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.hiw-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.4;
}

.hiw-arrow {
  font-size: 1.5rem;
  color: rgba(26,26,46,0.25);
  flex-shrink: 0;
}

/* Services Final CTA */
.services-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.services-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.services-cta p {
  font-size: var(--text-base);
  color: rgba(26,26,46,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--cream);
}

#testimonials .section-header {
  text-align: center;
  margin-bottom: 56px;
}
#testimonials .section-header h2::after {
  margin: 16px auto 0;
}

.testimonials-placeholder {
  text-align: center;
  padding: 48px 24px;
}
.testimonials-placeholder p {
  font-size: var(--text-base);
  color: rgba(26,26,46,0.5);
  font-style: italic;
  line-height: 1.7;
}
.testimonials-placeholder a {
  color: var(--rose);
  transition: opacity var(--transition);
}
.testimonials-placeholder a:hover { opacity: 0.75; }

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

.testimonial-card {
  background: var(--white);
  border: var(--border-subtle);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.8rem;
  color: rgba(26,26,46,0.55);
  margin-top: 2px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-benefits-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.newsletter-divider {
  display: none;
  width: 1px;
  background: rgba(26,26,46,0.1);
  align-self: stretch;
}

.newsletter-form-col .email-form {
  flex-direction: column;
}
.newsletter-form-col .email-form input[type="email"] {
  border-radius: var(--radius);
  border-right: 1.5px solid rgba(26,26,46,0.15);
  background: var(--white);
  border-color: rgba(26,26,46,0.15);
  color: var(--charcoal);
}
.newsletter-form-col .email-form input[type="email"]::placeholder {
  color: rgba(26,26,46,0.4);
}
.newsletter-form-col .email-form input[type="email"]:focus {
  border-color: var(--rose);
}
.newsletter-form-col .email-form .btn-primary {
  border-radius: var(--radius);
  margin-top: 12px;
  height: 52px;
  width: 100%;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  background: var(--white);
}

#products .section-header {
  text-align: center;
  margin-bottom: 64px;
}
#products .section-header h2::after {
  margin: 16px auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: var(--cream);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.product-card--soon {
  opacity: 0.85;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--gold);
  margin-bottom: 12px;
}

.product-desc {
  font-size: var(--text-sm);
  color: rgba(26,26,46,0.65);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.product-card .btn-primary,
.product-card .btn-secondary {
  align-self: flex-start;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--gold);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-socials a:hover {
  color: var(--rose);
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--rose);
}

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom-inner span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

/* Mobile floating CTA */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--rose);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(222,184,192,0.6);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition);
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}
.floating-cta:hover {
  background: var(--rose-dark);
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,46,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 800;
  transition: transform 0.3s ease;
}
.cookie-bar.hidden {
  transform: translateY(100%);
}
.cookie-bar p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.cookie-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition);
  padding: 4px 8px;
}
.cookie-close:hover {
  color: var(--rose);
}

/* ============================================================
   WAITLIST MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.75);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.modal-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}
/* override hidden so we can animate */
.modal-overlay[hidden] {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(26,26,46,0.3);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal-overlay:not([hidden]) .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: rgba(26,26,46,0.4);
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover {
  color: var(--rose);
}

.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.modal-box p {
  font-size: var(--text-sm);
  color: rgba(26,26,46,0.65);
  line-height: 1.7;
  margin-bottom: 0;
}
.modal-box .email-form {
  margin-top: 28px;
  flex-direction: column;
}
.modal-box .email-form input[type="email"] {
  border-radius: var(--radius);
  border-right: 1.5px solid rgba(26,26,46,0.15);
}
.modal-box .email-form .btn-primary {
  border-radius: var(--radius);
  margin-top: 12px;
  height: 52px;
}

/* ============================================================
   CONTACT FORM MODAL
   ============================================================ */
.modal-box--wide {
  max-width: 560px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form .form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  height: 48px;
  border: 1.5px solid rgba(26,26,46,0.15);
  border-radius: var(--radius);
  padding: 0 14px;
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--charcoal);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A1A2E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
}

.contact-form .contact-form-submit {
  width: 100%;
  margin-top: 4px;
  height: 52px;
}

.contact-success-msg {
  color: var(--rose);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 24px 0 8px;
  line-height: 1.6;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside reveal containers */
.services-grid .service-card,
.lever-grid .lever-card,
.products-grid .product-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color var(--transition), box-shadow var(--transition), translate var(--transition);
}
.services-grid.visible .service-card,
.lever-grid.visible .lever-card,
.products-grid.visible .product-card {
  opacity: 1;
  transform: translateY(0);
}
.services-grid .service-card:nth-child(2),
.lever-grid .lever-card:nth-child(2),
.products-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3),
.lever-grid .lever-card:nth-child(3),
.products-grid .product-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4),
.lever-grid .lever-card:nth-child(4)      { transition-delay: 0.3s; }
.lever-grid .lever-card:nth-child(5)      { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {

  .nav-links    { display: flex; }
  .btn-nav      { display: inline-flex; }
  .hamburger    { display: none; }

  /* Hero two-column */
  .hero-inner {
    grid-template-columns: 3fr 2fr;
  }
  .hero-image-col { display: block; }

  /* About two-column */
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .about-image { order: 1; }
  .about-copy  { order: 2; }
  .about-img-placeholder { max-width: none; }

  /* LEVER 3 + 2 */
  .lever-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services 2x2 */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Products 3-col */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Newsletter two-col */
  .newsletter-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .newsletter-benefits  { flex: 1; }
  .newsletter-divider   { display: block; margin: 0 56px; }
  .newsletter-form-col  { flex: 1; }
  .newsletter-form-col .email-form { flex-direction: row; }
  .newsletter-form-col .email-form input[type="email"] {
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
  }
  .newsletter-form-col .email-form .btn-primary {
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 0;
    width: auto;
    white-space: nowrap;
  }

  /* Footer 2-col */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Floating CTA visible on mobile */
  .floating-cta { display: flex; }

  /* Footer bottom inline */
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Social bar always inline */
  .social-bar-inner {
    flex-wrap: nowrap;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {

  .hamburger    { display: none; }
  .nav-links    { display: flex; }
  .btn-nav      { display: inline-flex; }

  /* Floating CTA only on mobile */
  .floating-cta { display: none !important; }

  /* LEVER 5-col */
  .lever-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Footer 4-col */
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }

  /* Email form in row */
  .newsletter-form-col .email-form { flex-direction: row; }
}

/* ============================================================
   RESPONSIVE — WIDE (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}

/* ============================================================
   GHOST BUTTON (white outline — for dark hero backgrounds)
   ============================================================ */
.btn-ghost,
a.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--charcoal);
  padding: 13px 31px;
  border: 1.5px solid rgba(26,26,46,0.3);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover,
a.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Trust pill on dark hero (charcoal bg) */
.bg-charcoal .trust-pill,
.page-header .trust-pill {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

/* Light secondary button (on dark backgrounds) */
.btn-secondary--light,
a.btn-secondary--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  padding: 13px 31px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-secondary--light:hover,
a.btn-secondary--light:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* ============================================================
   HERO CTAS (two-button row on B2B homepage)
   ============================================================ */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ============================================================
   VALUES SECTION (homepage 3-col strip)
   ============================================================ */
.values-section {
  padding: 80px 0;
}
.values-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.value-item {
  flex: 1;
  padding: 0 48px;
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child  { padding-right: 0; }
.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.3;
}
.value-item p {
  font-size: 0.88rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.7;
}
.value-divider {
  width: 1px;
  height: 80px;
  background: rgba(26,26,46,0.12);
  flex-shrink: 0;
  align-self: center;
}

/* ============================================================
   SERVICES TEASER (homepage — 2-card preview)
   ============================================================ */
.services-teaser {
  background: var(--white);
}
.services-teaser .services-grid {
  margin-bottom: 40px;
}
.all-services-link {
  text-align: center;
}
.link-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(26,26,46,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,26,46,0.2);
  transition: color var(--transition), text-decoration-color var(--transition);
}
.link-arrow:hover {
  color: var(--rose);
  text-decoration-color: var(--rose);
}

/* ============================================================
   ABOUT TEASER (homepage)
   ============================================================ */
.about-teaser-section {
  padding: 100px 0;
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.about-teaser-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 440px;
  margin: 0 auto;
}
.about-teaser-copy .label { color: var(--rose); }
.about-teaser-copy h2     { margin-bottom: 24px; }
.about-teaser-copy p {
  font-size: var(--text-base);
  color: rgba(26,26,46,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-teaser-copy .btn-secondary { margin-top: 8px; }

/* ============================================================
   NEWSLETTER STRIP (homepage — side-by-side 2-col)
   ============================================================ */
.newsletter-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-strip-copy .label  { color: var(--rose); }
.newsletter-strip-copy h2      { color: var(--white); margin-bottom: 16px; }
.newsletter-strip-copy .section-sub--light { margin: 0; }

.newsletter-strip-form .email-form {
  flex-direction: column;
  max-width: 100%;
}
.newsletter-strip-form .email-form input[type="email"] {
  border-radius: var(--radius);
  border-right: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.newsletter-strip-form .email-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-strip-form .email-form input[type="email"]:focus {
  border-color: var(--rose);
}
.newsletter-strip-form .email-form .btn-primary {
  border-radius: var(--radius);
  margin-top: 12px;
  height: 52px;
  width: 100%;
}

/* ============================================================
   PAGE HEADER (inner pages: services, about)
   ============================================================ */
.page-header {
  background: var(--gold);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='white' stroke-width='0.5' stroke-opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-header .label {
  color: var(--rose);
  margin-bottom: 20px;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  margin-bottom: 20px;
}
.page-header .page-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.75;
  max-width: 580px;
}

/* ============================================================
   ABOUT PAGE — CTA strip
   ============================================================ */
.about-cta-strip {
  background: var(--rose-light);
  padding: 80px 0;
  text-align: center;
}
.about-cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.about-cta-strip p {
  font-size: var(--text-base);
  color: rgba(26,26,46,0.65);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-strip .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE ADDITIONS — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .about-teaser-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .about-teaser-image .img-placeholder {
    max-width: none;
  }

  .newsletter-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .newsletter-strip-form .email-form {
    flex-direction: row;
  }
  .newsletter-strip-form .email-form input[type="email"] {
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
  }
  .newsletter-strip-form .email-form .btn-primary {
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 0;
    width: auto;
    white-space: nowrap;
  }
}

/* ============================================================
   MOBILE — below 768px overrides
   ============================================================ */
@media (max-width: 767px) {

  section { padding: 60px 0; }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding-top: 80px; padding-bottom: 80px; }

  .email-form {
    flex-direction: column;
  }
  .email-form input[type="email"] {
    border-right: 1.5px solid rgba(26,26,46,0.15);
    border-radius: var(--radius);
  }
  .email-form .btn-primary {
    border-radius: var(--radius);
    margin-top: 12px;
    height: 52px;
    width: 100%;
  }

  .lead-magnet-card .email-form input[type="email"] {
    border-right: 1.5px solid rgba(26,26,46,0.15);
  }

  .lead-magnet-card { padding: 32px 24px; }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { width: 100%; justify-content: center; }

  .how-it-works { padding: 32px 24px; gap: 24px; }
  .hiw-arrow    { display: none; }

  .services-grid  { grid-template-columns: 1fr; }
  .lever-grid     { grid-template-columns: 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .social-bar-inner { height: auto; padding: 20px 0; gap: 16px; }
  .social-links     { gap: 12px; flex-wrap: wrap; }

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

  .floating-cta { display: flex; }

  /* Values strip — stack vertically */
  .values-inner {
    flex-direction: column;
    gap: 32px;
  }
  .value-item {
    padding: 0;
  }
  .value-divider {
    width: 100%;
    height: 1px;
  }

  /* Hero CTAs — full-width stacked */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    justify-content: center;
  }

  /* Page header */
  .page-header {
    padding: 120px 0 60px;
  }

  /* About CTA strip buttons */
  .about-cta-strip .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .about-cta-strip .cta-buttons .btn-primary,
  .about-cta-strip .cta-buttons .btn-secondary--light {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   HERO PHOTO & FLOATING BADGES
   ============================================================ */

.hero-photo-wrap {
  position: relative;
}

.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1.5px solid rgba(222,184,192,0.55);
  transform: translate(16px, 16px);
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 5%;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(26,26,46,0.14), 0 8px 24px rgba(26,26,46,0.08);
}

.photo-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(222,184,192,0.35);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(26,26,46,0.1);
  z-index: 2;
  min-width: 120px;
}

.photo-float-badge--tl {
  top: 28px;
  left: -20px;
}

.photo-float-badge--br {
  bottom: 36px;
  right: -20px;
}

.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
  line-height: 1.2;
}

.badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(26,26,46,0.55);
  font-weight: 400;
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}

/* Trust pill — social proof above headline */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(222,184,192,0.5);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(26,26,46,0.07);
}

.trust-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.35); }
}

/* About-page photo */
.about-teaser-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 16px;
  display: block;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 32px 64px rgba(26,26,46,0.11);
}

/* Centered section-sub (inside .centered section-header) */
.section-header.centered .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   SITE INTRO OVERLAY
   ============================================================ */
#site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease;
}

#site-intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Intro content wrapper — logo above wordmark */
.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.intro-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.intro-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--charcoal);
}

/* ============================================================
   FREE PRODUCTS SECTION
   ============================================================ */
#free-products {
  padding: 80px 0;
}
#free-products .section-header {
  text-align: center;
  margin-bottom: 48px;
}
#free-products .section-header h2::after {
  margin: 16px auto 0;
}
#free-products .product-card {
  background: var(--white);
  border-left: 3px solid var(--rose);
}
#free-products .product-price {
  color: var(--green, #3D9970);
  font-weight: 700;
}
.free-product-form input[type="email"] {
  background: var(--cream);
  border-color: rgba(26,26,46,0.15);
  color: var(--charcoal);
}
.free-product-form input[type="email"]:focus {
  border-color: var(--rose);
}

/* ============================================================
   SUBSTACK PROMO STRIP
   ============================================================ */
.substack-promo {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}
.substack-promo-inner {
  max-width: 640px;
  margin: 0 auto;
}
.substack-promo .label {
  color: var(--rose);
  margin-bottom: 20px;
}
.substack-promo h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.substack-promo h2::after {
  margin: 16px auto 0;
}
.substack-promo p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 36px;
}
.substack-promo-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 2px solid rgba(255,255,255,0.2);
}
.substack-meta {
  margin-top: 20px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────────
   GUIDE CARD — on resources page
────────────────────────────────────────────────────────── */
.guide-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(26,26,46,0.4);
  margin: 12px 0 16px;
}

.guide-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1.5px solid var(--rose);
  padding-bottom: 1px;
  transition: color 0.18s, gap 0.18s;
}
.guide-card-link:hover { color: var(--rose-dark); gap: 10px; }

/* ──────────────────────────────────────────────────────────────
   GUIDE PAGE — hero, article, prompt boxes, tools, print
────────────────────────────────────────────────────────── */
.guide-hero {
  background: var(--cream);
  padding: 56px 0 44px;
  border-bottom: 1px solid rgba(26,26,46,0.08);
}
.guide-hero-inner { max-width: 760px; }
.guide-back {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(26,26,46,0.45);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.15s;
}
.guide-back:hover { color: var(--charcoal); }
.guide-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.guide-read-time { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: rgba(26,26,46,0.42); }
.guide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}
.guide-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(26,26,46,0.58);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 620px;
}
.guide-author { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: rgba(26,26,46,0.45); margin-bottom: 28px; }
.guide-author a { color: var(--rose-dark); text-decoration: none; }
.guide-author a:hover { text-decoration: underline; }
.guide-pdf-btn { font-size: 0.82rem; padding: 10px 20px; height: auto; }

.guide-article { padding: 60px 0 88px; background: var(--white); }
.guide-container { max-width: 720px; }
.guide-section { margin-bottom: 56px; }
.guide-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(222,184,192,0.45);
}
.guide-section h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); margin: 32px 0 10px; }
.guide-section p { font-family: 'Inter', sans-serif; font-size: 0.96rem; line-height: 1.82; color: rgba(26,26,46,0.75); margin-bottom: 16px; }
.guide-section ul, .guide-section ol { font-family: 'Inter', sans-serif; font-size: 0.96rem; line-height: 1.82; color: rgba(26,26,46,0.75); padding-left: 22px; margin-bottom: 16px; }
.guide-section li { margin-bottom: 6px; }

.prompt-box { background: var(--cream); border: 1px solid rgba(222,184,192,0.45); border-left: 3px solid var(--rose); border-radius: 8px; padding: 20px 24px; margin: 20px 0 36px; }
.prompt-box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.prompt-label { font-family: 'Inter', sans-serif; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-dark); }
.prompt-name { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; color: rgba(26,26,46,0.42); margin-left: 10px; }
.copy-btn { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; color: var(--charcoal); background: var(--white); border: 1px solid rgba(26,26,46,0.18); border-radius: 4px; padding: 5px 12px; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s; flex-shrink: 0; }
.copy-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.copy-btn.copied { color: #4a7c59; border-color: rgba(74,124,89,0.35); background: rgba(74,124,89,0.08); }
.prompt-text { font-family: 'Inter', sans-serif; font-size: 0.87rem; line-height: 1.78; color: rgba(26,26,46,0.78); white-space: pre-wrap; margin: 0; word-break: break-word; }

.tool-list { margin: 24px 0; }
.tool-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(26,26,46,0.07); }
.tool-item:first-child { padding-top: 8px; }
.tool-item:last-child { border-bottom: none; }
.tool-rank { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--rose); line-height: 1; flex-shrink: 0; width: 28px; padding-top: 3px; opacity: 0.85; }
.tool-body { flex: 1; }
.tool-name { font-family: 'Inter', sans-serif; font-size: 0.96rem; font-weight: 600; color: var(--charcoal); margin: 0 0 4px; }
.tool-roi { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.tool-desc { font-family: 'Inter', sans-serif; font-size: 0.88rem; line-height: 1.7; color: rgba(26,26,46,0.62); margin: 0; }

.lever-table { width: 100%; border-collapse: collapse; margin: 24px 0 20px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(26,26,46,0.05); }
.lever-table tr:nth-child(even) td { background: var(--cream); }
.lever-table td { padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: rgba(26,26,46,0.75); border-bottom: 1px solid rgba(26,26,46,0.06); line-height: 1.65; vertical-align: top; }
.lever-table tr:last-child td { border-bottom: none; }
.lever-table td:first-child { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--rose-dark); width: 44px; text-align: center; }
.lever-table td:nth-child(2) { font-family: 'Inter', sans-serif; font-weight: 600; color: var(--charcoal); width: 96px; font-size: 0.88rem; letter-spacing: 0.02em; }

.guide-bottom-cta { margin-top: 60px; padding: 40px; background: var(--cream); border-radius: 16px; border: 1px solid rgba(222,184,192,0.35); text-align: center; }
.guide-bottom-cta p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: rgba(26,26,46,0.52); margin-top: 20px; line-height: 1.7; }
.guide-bottom-cta a { color: var(--rose-dark); text-decoration: underline; text-underline-offset: 3px; }

@media print {
  .no-print, nav, footer, .floating-cta, .cookie-bar,
  #contact-modal, #waitlist-modal, .guide-bottom-cta { display: none !important; }
  body { font-size: 10pt; color: #1a1a1a; background: #fff; }
  .guide-hero { background: #fff; border: none; padding: 20pt 0 12pt; }
  .guide-article { padding: 12pt 0 20pt; }
  .guide-container, .guide-hero-inner { max-width: 100%; }
  .guide-title { font-size: 20pt; margin-bottom: 8pt; }
  .guide-subtitle { font-size: 10pt; color: #444; }
  .guide-section { margin-bottom: 24pt; }
  .guide-section h2 { font-size: 13pt; page-break-after: avoid; }
  .guide-section h3 { font-size: 10pt; page-break-after: avoid; }
  .guide-section p, .guide-section li { font-size: 9.5pt; line-height: 1.6; color: #222; }
  .prompt-box { background: #f5f5f5; border-left: 3px solid #bbb; break-inside: avoid; padding: 10pt 14pt; margin: 8pt 0 16pt; }
  .prompt-text { font-size: 9pt; color: #333; }
  .tool-item { break-inside: avoid; padding: 10pt 0; }
  .tool-desc { font-size: 9pt; color: #444; }
  .lever-table td { font-size: 9pt; padding: 8pt 12pt; }
  a { color: inherit; text-decoration: none; }
}

/* ──────────────────────────────────────────────────────────────
   FREE PRODUCTS — inline email form per card
────────────────────────────────────────────────────────── */
.free-card-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.free-card-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,26,46,0.18);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.free-card-form input[type="email"]:focus { border-color: var(--rose); }

.free-card-form .btn-primary {
  width: 100%;
  border-radius: 6px;
  height: 48px;
  margin-top: 0;
}

.free-card-success {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4a7c59;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(74,124,89,0.08);
  border-radius: 6px;
  border: 1px solid rgba(74,124,89,0.2);
}

.products-loading {
  text-align: center;
  color: rgba(26,26,46,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  grid-column: 1 / -1;
  padding: 40px 0;
}

/* ──────────────────────────────────────────────────────────────
   FREE LIBRARY GATE
────────────────────────────────────────────────────────────── */
.free-gate {
  max-width: 560px;
  margin: 0 auto 56px;
  background: var(--white);
  border: 1px solid rgba(222,184,192,0.45);
  border-radius: 20px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(26,26,46,0.06);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.free-gate.is-unlocking {
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
}

.free-gate-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin: 0 0 14px;
}

.free-gate-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 12px;
  line-height: 1.28;
}

.free-gate-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(26,26,46,0.58);
  line-height: 1.65;
  margin: 0 0 28px;
}

.free-gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.free-gate-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(26,26,46,0.18);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  box-sizing: border-box;
  text-align: center;
  transition: border-color 0.2s;
}

.free-gate-form input[type="email"]:focus {
  border-color: var(--rose);
}

.free-gate-form .btn-primary {
  width: 100%;
  border-radius: 8px;
  height: 52px;
}

.gate-micro {
  text-align: center;
  margin-top: 14px;
}

.product-unlocked-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a7c59;
  background: rgba(74,124,89,0.1);
  border: 1px solid rgba(74,124,89,0.25);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.product-inbox-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin: 14px 0 0;
}

#free-library.library-appear {
  animation: library-appear 0.55s ease both;
}

@keyframes library-appear {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────────────────────
   RESOURCES PAGE — clean header + 2-card grid
──────────────────────────────────────────────────────────────── */
.resources-header {
  padding: 88px 0 72px;
  text-align: center;
  background: var(--white);
}

.resources-header-inner {
  max-width: 600px;
  margin: 0 auto;
}

.resources-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 18px 0 22px;
}

.resources-header-sub {
  font-size: 1.05rem;
  color: rgba(26,26,46,0.52);
  line-height: 1.68;
  max-width: 460px;
  margin: 0 auto;
}

.resources-cards {
  padding: 64px 0 100px;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.resource-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 32px rgba(26,26,46,0.07);
  border: 1px solid rgba(26,26,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.resource-card--link:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 52px rgba(26,26,46,0.13);
}

.resource-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.resource-card-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: rgba(26,26,46,0.36);
  letter-spacing: 0.02em;
}

.resource-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.22;
  margin: 0;
}

.resource-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(26,26,46,0.60);
  margin: 0;
}

.resource-checklist {
  margin: 0;
}

.resource-card-btn {
  align-self: flex-start;
}

.resource-card-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-card-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(26,26,46,0.15);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.resource-card-form input[type="email"]:focus {
  border-color: var(--rose);
  background: var(--white);
}

.resource-card-form .btn-primary {
  width: 100%;
}

@media (max-width: 820px) {
  .resource-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .resource-card {
    padding: 32px 28px;
  }

  .resources-header {
    padding: 60px 0 52px;
  }

  .resource-card-title {
    font-size: 1.4rem;
  }
}

/* ──────────────────────────────────────────────────────────────
   5-DAY CHALLENGE PAGE
──────────────────────────────────────────────────────────────── */
.challenge-signup-section { margin-bottom: 56px; }

.challenge-signup-card {
  background: var(--cream);
  border: 1px solid rgba(222,184,192,0.4);
  border-radius: 16px;
  padding: 44px 48px;
  text-align: center;
}

.challenge-signup-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin: 0 0 14px;
}

.challenge-signup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 10px;
  line-height: 1.28;
}

.challenge-signup-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(26,26,46,0.48);
  margin: 0 0 28px;
}

.challenge-signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.challenge-signup-form input[type="email"] {
  padding: 14px 18px;
  border: 1.5px solid rgba(26,26,46,0.16);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  text-align: center;
  transition: border-color 0.2s;
}

.challenge-signup-form input[type="email"]:focus { border-color: var(--rose); }

.challenge-signup-form .btn-primary { width: 100%; border-radius: 8px; height: 52px; }

.challenge-days {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.challenge-day {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26,26,46,0.07);
  align-items: flex-start;
}

.challenge-day:last-child { border-bottom: none; }

.challenge-day-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 44px;
  padding-top: 3px;
}

.challenge-day-body { flex: 1; }

.challenge-day-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 6px;
}

.challenge-day-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(26,26,46,0.60);
  margin: 0;
}

.challenge-bottom-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.challenge-bottom-form input[type="email"] {
  padding: 13px 16px;
  border: 1.5px solid rgba(26,26,46,0.16);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.challenge-bottom-form input[type="email"]:focus { border-color: var(--rose); }
.challenge-bottom-form .btn-primary { width: 100%; }

/* ──────────────────────────────────────────────────────────────
   TWO-AUDIENCE SPLIT (homepage)
──────────────────────────────────────────────────────────────── */
.audience-split {
  padding: 72px 0 80px;
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 44px 40px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(26,26,46,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,26,46,0.11);
}

.audience-card--dark {
  background: var(--charcoal);
  border-color: transparent;
}

.audience-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.audience-card--dark .audience-eyebrow {
  color: var(--rose);
}

.audience-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0;
}

.audience-card--dark .audience-title {
  color: var(--white);
}

.audience-body {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(26,26,46,0.62);
  margin: 0;
  flex: 1;
}

.audience-card--dark .audience-body {
  color: rgba(255,255,255,0.58);
}

.audience-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.audience-card--dark .audience-cta {
  color: var(--rose);
}

@media (max-width: 720px) {
  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .audience-card {
    padding: 36px 28px;
  }
}

/* ──────────────────────────────────────────────────────────────
   SPLIT HERO (homepage audience router)
──────────────────────────────────────────────────────────────── */
.split-hero {
  display: flex;
  min-height: calc(100vh - 72px);
  position: relative;
}

.brand-hero-header {
  background: linear-gradient(160deg, #1E1E30 0%, #0E0E1C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 56px;
  position: relative;
  overflow: hidden;
}

.brand-hero-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.brand-hero-header::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(222,184,192,0.18) 0%, transparent 68%);
  pointer-events: none;
}

.brand-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.brand-hero-logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow:
    0 0 0 10px rgba(250,247,242,0.08),
    0 12px 40px rgba(0,0,0,0.35),
    0 0 60px rgba(222,184,192,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.brand-hero-logo {
  height: 62px;
  width: 62px;
  object-fit: contain;
}

.brand-hero-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.brand-hero-wordmark em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.brand-hero-rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin-top: 22px;
  opacity: 0.75;
}

.split-hero-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 72px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-hero-half:hover { flex: 1.2; }

/* Dark (business) half */
.split-hero-half--dark {
  background: linear-gradient(155deg, #1E1E30 0%, #0E0E1C 100%);
}

/* Dual radial rose glow */
.split-hero-half--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 82%, rgba(222,184,192,0.18) 0%, transparent 48%),
    radial-gradient(ellipse at 82% 18%, rgba(222,184,192,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Faint watermark */
.split-hero-half--dark::after {
  content: 'LEVER';
  position: absolute;
  bottom: -24px;
  right: -8px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 7vw, 9rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.25em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Light (learn AI) half */
.split-hero-half--light {
  background: var(--cream);
  border-left: 1px solid rgba(26,26,46,0.08);
}

/* Dot grid texture */
.split-hero-half--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,46,0.065) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* Gold glow corner */
.split-hero-half--light::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse, rgba(140,103,85,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.split-hero-content {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.split-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Accent bar before eyebrow label */
.split-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.8;
}

.split-hero-half--light .split-hero-eyebrow { color: var(--gold); }

.split-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin: 0;
}

.split-hero-half--light .split-hero-title { color: var(--charcoal); }

.split-hero-body {
  font-size: 0.97rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.split-hero-half--light .split-hero-body { color: rgba(26,26,46,0.58); }

.split-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(222,184,192,0.1);
  border: 1px solid rgba(222,184,192,0.3);
  border-radius: 6px;
  padding: 14px 24px;
  width: fit-content;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.split-hero-half--dark:hover .split-hero-cta {
  background: rgba(222,184,192,0.2);
  border-color: rgba(222,184,192,0.55);
  color: var(--rose);
}

.split-hero-half--light .split-hero-cta {
  color: rgba(26,26,46,0.85);
  background: rgba(26,26,46,0.05);
  border-color: rgba(26,26,46,0.18);
}

.split-hero-half--light:hover .split-hero-cta {
  background: rgba(140,103,85,0.1);
  border-color: rgba(140,103,85,0.35);
  color: var(--gold);
}

/* OR divider badge */
.split-hero-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow:
    0 0 0 1px rgba(26,26,46,0.07),
    0 0 0 10px rgba(255,255,255,0.1),
    0 8px 32px rgba(26,26,46,0.22);
  pointer-events: none;
}

.split-hero-divider span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .split-hero { flex-direction: column; min-height: auto; }
  .split-hero-half { padding: 72px 32px; min-height: 52vh; }
  .split-hero-half:hover { flex: 1; }
  .split-hero-half--light { border-left: none; border-top: 1px solid rgba(26,26,46,0.08); }
  .split-hero-title { font-size: 1.85rem; }
  .split-hero-half--dark::after { font-size: 3.5rem; bottom: -16px; }
  .brand-hero-header { padding: 100px 24px 44px; }
  .brand-hero-logo-circle { width: 84px; height: 84px; }
  .brand-hero-logo { height: 52px; width: 52px; }
  .brand-hero-wordmark { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .split-hero-half { padding: 56px 24px; min-height: 48vh; }
  .split-hero-title { font-size: 1.65rem; }
  .brand-hero-header { padding: 88px 24px 40px; }
  .brand-hero-logo-circle { width: 72px; height: 72px; }
  .brand-hero-logo { height: 44px; width: 44px; }
  .brand-hero-wordmark { font-size: 1.65rem; }
}

/* ──────────────────────────────────────────────────────────────
   LEVER FRAMEWORK SECTION (resources.html)
──────────────────────────────────────────────────────────────── */
.lever-section {
  padding: 100px 0 96px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Subtle dot texture */
.lever-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Rose ambient glow bottom-right */
.lever-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(222,184,192,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.lever-section .section-header {
  position: relative;
  z-index: 1;
}

.lever-section .section-header h2 { color: var(--white); }

.lever-section .section-header h2::after {
  margin-left: auto;
  margin-right: auto;
}

.lever-section .section-sub { color: rgba(255,255,255,0.52); }

.lever-steps {
  display: flex;
  align-items: stretch;
  margin-top: 64px;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Glass cards */
.lever-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 20px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lever-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(222,184,192,0.42);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(222,184,192,0.15);
}

.lever-step-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Rose-gradient letter tile */
.lever-letter {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(222,184,192,0.28), 0 0 0 1px rgba(255,255,255,0.06);
}

.lever-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.lever-step-body {
  font-size: 0.87rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.lever-connector { display: none; }

@media (max-width: 860px) {
  .lever-steps { flex-direction: column; gap: 12px; }
  .lever-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    border-radius: 12px;
  }
  .lever-step:hover { transform: translateY(-3px); }
  .lever-step-text { gap: 8px; }
}

@media (max-width: 480px) {
  .lever-section { padding: 72px 0 64px; }
  .lever-letter { width: 68px; height: 68px; font-size: 1.75rem; border-radius: 16px; }
}

/* ──────────────────────────────────────────────────────────────
   GUIDE EMAIL GATE (ai-starter-kit.html)
──────────────────────────────────────────────────────────────── */
.guide-gate {
  padding: 80px 0 100px;
  background: var(--cream);
}

.guide-gate-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 52px 48px;
  box-shadow: 0 8px 40px rgba(26,26,46,0.09);
  text-align: center;
  border: 1px solid rgba(26,26,46,0.06);
}

.guide-gate-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
}

.guide-gate-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 12px;
}

.guide-gate-sub {
  font-size: 0.9rem;
  color: rgba(26,26,46,0.52);
  line-height: 1.65;
  margin-bottom: 28px;
}

.guide-gate-checklist {
  text-align: left;
  margin-bottom: 28px;
}

.guide-gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-gate-form input[type="email"] {
  padding: 14px 16px;
  border: 1.5px solid rgba(26,26,46,0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
  width: 100%;
}

.guide-gate-form input[type="email"]:focus { border-color: var(--rose); background: var(--white); }
.guide-gate-form .btn-primary { width: 100%; }

.guide-gate-micro {
  font-size: 0.78rem;
  color: rgba(26,26,46,0.38);
  margin-top: 10px;
}

@media (max-width: 560px) {
  .guide-gate-card { padding: 40px 24px; }
  .guide-gate-title { font-size: 1.5rem; }
}
