/* ============================================================
   The Next Chapter Concierge — Main Stylesheet
   ============================================================ */

/* Google Fonts imported in HTML head */

/* ---- CSS Custom Properties ---- */
:root {
  --green-dark:    #2d5232;
  --green-mid:     #3a6840;
  --green-light:   #4e8a56;
  --cream:         #f5f0e8;
  --cream-dark:    #ede6d6;
  --tan:           #c4b49a;
  --tan-light:     #d9ccb8;
  --text-dark:     #1a2e1a;
  --text-mid:      #3d4f3d;
  --text-light:    #6b7c6b;
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(45, 82, 50, 0.10);
  --shadow-md:     0 6px 24px rgba(45, 82, 50, 0.14);
  --shadow-lg:     0 12px 48px rgba(45, 82, 50, 0.18);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.28s ease;
  --max-width:     1160px;
  --section-pad:   96px 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.9rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

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

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.serif { font-family: 'Cormorant Garamond', serif; }

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-green  { color: var(--green-dark); }
.text-tan    { color: var(--tan); }

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

.section-pad { padding: var(--section-pad); }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
  display: block;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--tan);
  margin: 1.25rem auto 2rem;
  border-radius: 2px;
}

.divider-left {
  margin-left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-tan {
  background: var(--tan);
  color: var(--text-dark);
  border-color: var(--tan);
}

.btn-tan:hover {
  background: var(--tan-light);
  border-color: var(--tan-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 18px 40px;
}

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo .logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-light);
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tan-light);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-mid);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--tan) !important;
  color: var(--text-dark) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--tan-light) !important;
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  padding: 20px 0 28px;
}

.mobile-nav ul li a {
  display: block;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.mobile-nav ul li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--tan);
}

.mobile-nav .mobile-cta {
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav .mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ---- Hero ---- */
.hero {
  background: var(--green-dark);
  padding: 160px 24px 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(78, 138, 86, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero .hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  color: var(--tan-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}

.hero .hero-desc {
  font-family: 'Lato', sans-serif;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

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

/* ---- Hero variants (interior pages) ---- */
.page-hero {
  background: var(--green-dark);
  padding: 140px 24px 72px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .eyebrow {
  color: var(--tan-light);
}

.page-hero h1 {
  color: var(--white);
  font-style: italic;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 1rem auto 0;
}

/* ---- Section: Intro ---- */
.intro-section {
  background: var(--cream);
  padding: var(--section-pad);
}

.intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.intro-headshot {
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid var(--tan);
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.intro-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--green-dark);
  border-left: 4px solid var(--tan);
  padding: 1.25rem 2rem;
  margin: 2.5rem 0;
  text-align: left;
  background: rgba(196,180,154,0.12);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---- Section: Reality ---- */
.reality-section {
  background: var(--white);
  padding: var(--section-pad);
}

.reality-inner {
  max-width: 900px;
  margin: 0 auto;
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 3rem;
}

.reality-image img {
  mix-blend-mode: luminosity;
  opacity: 0.85;
  border-radius: 12px;
}

.reality-text h2 {
  font-style: italic;
}

.reality-text .lead {
  margin: 1.25rem 0 1.5rem;
}

.reality-list {
  margin-top: 1.5rem;
}

.reality-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.97rem;
  color: var(--text-mid);
}

.reality-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--tan);
  margin-top: 8px;
}

.reality-callout {
  background: var(--green-dark);
  color: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reality-callout h3 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
}

.reality-callout p {
  color: rgba(255,255,255,0.84);
  font-size: 0.98rem;
}

.reality-callout .btn {
  margin-top: 1.75rem;
  align-self: flex-start;
}

/* ---- Section: Services ---- */
.services-section {
  background: var(--cream);
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(196,180,154,0.3);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--tan);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* ---- Section: Who We Serve ---- */
.audience-section {
  background: var(--white);
  padding: var(--section-pad);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.audience-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--cream-dark);
  transition: all var(--transition);
}

.audience-card:hover {
  border-color: var(--green-dark);
  background: var(--cream);
}

.audience-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.audience-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.audience-card p {
  font-size: 0.94rem;
  color: var(--text-light);
}

/* ---- Section: Framework ---- */
.framework-section {
  background: var(--green-dark);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.framework-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.framework-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.framework-inner h2 {
  color: var(--white);
}

.framework-inner > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.framework-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
}

.framework-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.framework-step:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--tan-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.framework-step h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.framework-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.65;
}

.framework-arrow {
  color: var(--tan);
  font-size: 1.8rem;
  padding: 0 12px;
  font-weight: 300;
}

.framework-note {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,180,154,0.3);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--tan-light);
}

/* ---- Section: Lead Magnet ---- */
.lead-magnet-section {
  background: var(--cream);
  padding: var(--section-pad);
  overflow: visible;
}

.lead-magnet-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 24px;
  box-sizing: border-box;
}

.lead-magnet-content h2 {
  font-style: italic;
}

.lead-magnet-content .lead {
  margin: 1rem 0 1.5rem;
}

.guide-includes {
  margin: 1.5rem 0;
}

.guide-includes h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
}

.guide-includes ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(196,180,154,0.25);
}

.guide-includes ul li:last-child {
  border-bottom: none;
}

.guide-includes ul li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.lead-magnet-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px 80px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196,180,154,0.25);
}

.lead-magnet-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.lead-magnet-form-wrap p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

/* ---- Mailchimp form overrides ---- */
#mc_embed_signup {
  background: transparent !important;
  font-family: 'Lato', sans-serif !important;
  width: 100% !important;
}
#mc_embed_signup .mc-field-group {
  margin-bottom: 1.25rem;
  width: 100% !important;
}
#mc_embed_signup .mc-field-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
#mc_embed_signup .mc-field-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(196,180,154,0.5);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  box-sizing: border-box;
}
#mc_embed_signup .mc-field-group input:focus {
  outline: none;
  border-color: var(--green-mid);
}
#mc_embed_signup #mc-embedded-subscribe {
  width: 100%;
  padding: 18px 24px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-top: 1rem;
  display: block;
}
#mc_embed_signup #mc-embedded-subscribe:hover {
  background: var(--green-mid);
}
#mc_embed_signup h2 { display: none; }
#mc_embed_signup .indicates-required { display: none; }
#mc_embed_signup .clear { overflow: visible; }
#mc_embed_signup #mc_embed_signup_scroll { overflow: visible; }
#mc_embed_signup div { overflow: visible; }

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(45,82,50,0.08);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233d4f3d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: rgba(45,82,50,0.08);
  border: 1px solid var(--green-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-top: 1rem;
}

/* ---- Section: Testimonials ---- */
.testimonials-section {
  background: var(--white);
  padding: var(--section-pad);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(196,180,154,0.3);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--tan);
  position: absolute;
  top: 24px;
  left: 28px;
  opacity: 0.5;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.author-info .author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.author-info .author-role {
  font-size: 0.82rem;
  color: var(--text-light);
}

.stars {
  color: #c9a84c;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--green-dark);
  padding: 72px 24px 36px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand .logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-light);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-contact-item .icon {
  font-size: 0.95rem;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-bio {
  background: var(--cream);
  padding: var(--section-pad);
}

.about-bio-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: 100px;
}

.about-photo {
  aspect-ratio: 4/5;
  background: var(--tan);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.about-photo-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

.about-bio-text .eyebrow {
  text-align: left;
}

.about-bio-text h2 {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.about-bio-text p {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-values {
  background: var(--white);
  padding: var(--section-pad);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 36px 24px;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--green-dark);
}

.value-item p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

.about-approach {
  background: var(--green-dark);
  padding: var(--section-pad);
}

.approach-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.approach-inner h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.approach-inner > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.pillar {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
}

.pillar h4 {
  color: var(--tan-light);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.pillar p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.service-detail {
  padding: 80px 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.service-detail:nth-child(even) {
  background: var(--cream);
}

.service-detail:nth-child(odd) {
  background: var(--white);
}

.service-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-detail:nth-child(even) .service-detail-inner {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner > * {
  direction: ltr;
}

.service-detail-content .service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.service-detail-content h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-includes {
  margin-top: 1.5rem;
}

.service-includes h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.9rem;
}

.service-includes ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(196,180,154,0.2);
}

.service-includes ul li:last-child {
  border-bottom: none;
}

.service-includes ul li::before {
  content: '→';
  color: var(--green-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.service-detail-aside {
  position: sticky;
  top: 100px;
}

.service-aside-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
}

.service-aside-card h4 {
  color: var(--tan-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.service-aside-card ul li {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-aside-card ul li:last-child {
  border-bottom: none;
}

.service-aside-card ul li::before {
  content: '✓';
  color: var(--tan-light);
  flex-shrink: 0;
}

.service-aside-card .cta-note {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-aside-card .cta-note p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.services-cta-section {
  background: var(--cream);
  padding: 80px 24px;
  text-align: center;
}

.services-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.services-cta-inner h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

.services-cta-inner p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   GUIDE PAGE
   ============================================================ */

.guide-hero {
  background: var(--green-dark);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.guide-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.guide-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.guide-hero-text .eyebrow {
  color: var(--tan-light);
}

.guide-hero-text h1 {
  color: var(--white);
  font-style: italic;
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.guide-hero-text .hero-desc {
  color: rgba(255,255,255,1);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.guide-hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
}

.guide-hero-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.guide-hero-form p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.guide-what-inside {
  background: var(--cream);
  padding: var(--section-pad);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.chapter-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid rgba(196,180,154,0.3);
  transition: all var(--transition);
}

.chapter-card:hover {
  border-color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.chapter-card h4 {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.guide-why {
  background: var(--white);
  padding: var(--section-pad);
}

.guide-why-inner {
  max-width: 820px;
  margin: 0 auto;
}

.guide-why-inner h2 {
  font-style: italic;
  margin-bottom: 1.25rem;
}

.guide-why-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--green-dark);
  border-left: 4px solid var(--tan);
  padding: 1rem 1.75rem;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}

.guide-why-inner p {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.85;
}

.guide-cta-bottom {
  background: var(--green-dark);
  padding: 80px 24px;
  text-align: center;
}

.guide-cta-bottom h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
}

.guide-cta-bottom p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  background: var(--cream);
  padding: var(--section-pad);
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196,180,154,0.3);
}

.contact-detail-item:first-child {
  border-top: 1px solid rgba(196,180,154,0.3);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.97rem;
  color: var(--text-dark);
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--green-dark);
}

.contact-assurance {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(196,180,154,0.3);
}

.contact-assurance p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-assurance p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 2rem;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  :root {
    --section-pad: 72px 20px;
  }

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

  .reality-grid,
  .lead-magnet-inner,
  .about-bio-inner,
  .service-detail-inner,
  .guide-hero-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) .service-detail-inner {
    direction: ltr;
  }

  .service-detail-aside {
    position: static;
  }

  .about-photo-wrap {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  .framework-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .framework-arrow {
    text-align: center;
    padding: 8px 0;
    transform: rotate(90deg);
  }

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

  .approach-pillars {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .guide-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .guide-hero {
    padding: 130px 24px 80px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 56px 18px;
  }

  .hero {
    padding: 130px 18px 80px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .lead-magnet-form-wrap,
  .contact-form-wrap,
  .guide-hero-form {
    padding: 32px 24px;
  }

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

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

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .audience-grid,
  .values-grid,
  .chapters-grid {
    grid-template-columns: 1fr;
  }
}
