/* ================================================
   SAGE OWL STRATEGY — SHARED STYLESHEET
   Brand: Cream + Sage Green + Rose
   ================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --cream:       #F7EFE3;
  --cream-mid:   #EEE0CC;
  --cream-dark:  #E2D0B8;
  --sage:        #6B7F5E;
  --sage-dark:   #4A5C3E;
  --sage-light:  #8FA882;
  --rose:        #C4879A;
  --rose-dark:   #A86878;
  --rose-light:  #DDB0BF;
  --text:        #3C3028;
  --text-muted:  #705C50;
  --white:       #FEFAF5;
  --border:      #DDD0BE;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Jost', sans-serif;

  --radius:   6px;
  --radius-lg: 16px;
  --shadow:   0 4px 24px rgba(60,48,40,.10);
  --shadow-lg: 0 8px 48px rgba(60,48,40,.14);
  --transition: .25s ease;
  --max-w: 1120px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
footer.footer { margin-bottom: 0; display: block; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, .btn { cursor: pointer; font-family: var(--font-body); }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sage { background: var(--sage); color: var(--cream); }
.section--cream-dark { background: var(--cream-mid); }
.section--white { background: var(--white); }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2rem, 3.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { font-size: 1.0625rem; line-height: 1.8; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 300; line-height: 1.7; }
.script { font-family: var(--font-script); font-weight: 600; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 10px;
}
.section--sage .eyebrow { color: var(--rose-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--rose {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn--rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sage {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.btn--sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover { background: var(--cream); color: var(--sage); transform: translateY(-2px); }
.btn--outline-sage {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn--outline-sage:hover { background: var(--sage); color: var(--cream); transform: translateY(-2px); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(60,48,40,.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo img { height: 52px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--sage); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--sage); }
.nav__cta { margin-left: 12px; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: var(--sage);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 90px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__text h1 { color: var(--cream); margin-bottom: 20px; }
.hero__text h1 em { font-style: italic; color: var(--rose-light); }
.hero__text .lead { color: rgba(247,239,227,.82); margin-bottom: 32px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image { position: relative; display: flex; justify-content: center; }
.hero__photo-wrap {
  position: relative;
  width: 380px; height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(196,135,154,.5);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.hero__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__photo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(196,135,154,.35);
  pointer-events: none;
}

/* ---- PAIN CARDS ---- */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pain-card h4 { font-family: var(--font-display); color: var(--rose-dark); margin-bottom: 10px; font-size: 1.3rem; }
.pain-card p { font-size: .97rem; color: var(--text-muted); }

/* ---- FEATURE GRID (what you get) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-item {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,.16); }
.feature-item h4 { color: var(--cream); margin-bottom: 8px; }
.feature-item p { color: rgba(247,239,227,.78); font-size: .95rem; }

/* ---- TESTIMONIAL ---- */
.testimonial-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--rose);
  max-width: 820px;
  margin: 0 auto;
}
.testimonial-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-block .stars { color: var(--rose); font-size: 1.2rem; margin-bottom: 10px; }
.testimonial-block cite { font-size: .9rem; font-weight: 600; color: var(--text-muted); font-style: normal; }

/* ---- TWO-PATH SECTION ---- */
.two-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.path-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.path-card--entry {
  background: var(--white);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.path-card--primary {
  background: var(--sage);
  color: var(--cream);
}
.path-card__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.path-card--entry .path-card__tag { background: var(--cream-mid); color: var(--sage-dark); }
.path-card--primary .path-card__tag { background: rgba(255,255,255,.2); color: var(--cream); }
.path-card h3 { margin-bottom: 10px; }
.path-card--entry h3 { color: var(--sage-dark); }
.path-card--primary h3 { color: var(--cream); }
.path-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 14px 0;
}
.path-card--entry .price { color: var(--rose-dark); }
.path-card--primary .price { color: var(--rose-light); }
.path-card p { margin-bottom: 24px; font-size: .97rem; }
.path-card--entry p { color: var(--text-muted); }
.path-card--primary p { color: rgba(247,239,227,.84); }
.path-card ul { margin-bottom: 28px; }
.path-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.path-card--primary ul li { border-color: rgba(255,255,255,.12); color: rgba(247,239,227,.88); }
.path-card ul li::before {
  content: '🦉';
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- ABOUT SECTIONS ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split--reverse .about-split__text { order: 2; }
.about-split--reverse .about-split__image { order: 1; }
.about-split__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about-split__image--circle img {
  border-radius: 50%;
  width: 360px;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--rose-light);
  box-shadow: var(--shadow-lg);
}
.about-split__image--circle { display: flex; justify-content: center; }

/* ---- STATS / CREDENTIALS ---- */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cred-item { text-align: center; padding: 36px 24px; }
.cred-item .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.cred-item p { font-size: .95rem; color: var(--text-muted); }

/* ---- OFFER DETAILS (Roadmap) ---- */
.offer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 52px;
}
.offer-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--rose);
}
.offer-box h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--sage-dark); margin-bottom: 20px; }
.offer-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .97rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.offer-box ul li:last-child { border-bottom: none; }
.offer-box ul li::before { content: '✦'; color: var(--rose); flex-shrink: 0; margin-top: 3px; }

.objection-list { margin-top: 32px; }
.objection-item {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--cream-mid);
  margin-bottom: 14px;
  border-left: 4px solid var(--sage);
}
.objection-item .q {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage-dark);
  margin-bottom: 6px;
}
.objection-item .a { font-size: .95rem; color: var(--text-muted); }

/* ---- CONTACT / BOOKING ---- */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.booking-info h2 { margin-bottom: 18px; }
.booking-info p { margin-bottom: 14px; color: var(--text-muted); }
.booking-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--border);
}
.booking-embed p { color: var(--text-muted); margin-bottom: 24px; }

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--sage);
  color: var(--cream);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,135,154,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { color: var(--cream); max-width: 780px; margin: 0 auto 18px; }
.page-hero .lead { color: rgba(247,239,227,.82); max-width: 640px; margin: 0 auto 32px; }

/* ---- DIVIDER OWL ---- */
.owl-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 48px auto;
  max-width: 480px;
  opacity: .55;
}
.owl-divider::before,
.owl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.owl-divider span { font-size: 1.5rem; flex-shrink: 0; }

/* ---- BANNER / QUOTE STRIP ---- */
.quote-strip {
  background: var(--rose);
  color: var(--white);
  padding: 40px 24px;
  text-align: center;
}
.quote-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 600;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--sage-dark);
  color: rgba(247,239,227,.75);
  padding: 56px 0 28px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__logo img { height: 48px; width: auto; margin-bottom: 14px; }
.footer__tagline { font-size: .95rem; line-height: 1.65; }
.footer h5 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247,239,227,.5);
  margin-bottom: 16px;
}
.footer__links li { margin-bottom: 9px; }
.footer__links a {
  font-size: .9rem;
  color: rgba(247,239,227,.7);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--rose-light); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(247,239,227,.65);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(247,239,227,.7); }
.footer__bottom a:hover { color: var(--rose-light); }

/* ---- OPTIN BOX ---- */
.optin-section { background: var(--cream-mid); padding: 72px 0; }
.optin-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--rose);
}
.optin-box h3 { margin-bottom: 12px; }
.optin-box p { color: var(--text-muted); margin-bottom: 28px; }
.optin-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.optin-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.optin-form input:focus { border-color: var(--rose); }
.optin-form input::placeholder { color: var(--text-muted); }
.optin-note { font-size: .8rem; color: var(--text-muted); margin-top: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__btns { justify-content: center; }
  .hero__image { order: -1; }
  .hero__photo-wrap { width: 280px; height: 280px; }
  .pain-cards { grid-template-columns: 1fr; }
  .two-path { grid-template-columns: 1fr; }
  .about-split,
  .about-split--reverse { grid-template-columns: 1fr; gap: 36px; }
  .about-split--reverse .about-split__text,
  .about-split--reverse .about-split__image { order: unset; }
  .creds-grid { grid-template-columns: 1fr; }
  .offer-details { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .optin-box { padding: 36px 28px; }
  .optin-form { flex-direction: column; }
  .testimonial-block { padding: 32px 28px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 18px;
  }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 60px 20px 50px; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.fade-up--delay-1 { animation-delay: .15s; }
.fade-up--delay-2 { animation-delay: .3s; }
.fade-up--delay-3 { animation-delay: .45s; }
