:root {
  --cream: #FAF8F4;
  --ink: #0B2447;
  --black: #111111;
  --muted: #64748b;
  --soft: #475569;
  --rule: #e5e2dc;
  --green: #8FA31E;
  --green-soft: #D4DE9E;
  --green-deep: #6d7f16;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter Tight", -apple-system, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.wordmark {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: 22px; color: var(--ink); letter-spacing: -0.015em;
}
.wordmark .ai {
  font-variation-settings: "opsz" 144, "wght" 400;
  font-style: italic;
}

/* Bevel-3 badge — prussian rounded rectangle with cream wordmark + green italic AI.
   Used in the top-left nav as the brand mark. */
.wordmark-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 8px 16px 9px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wordmark-badge .ai {
  font-variation-settings: "opsz" 144, "wght" 400;
  font-style: italic;
  color: var(--green);
}
.wordmark-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 36, 71, 0.18);
}
.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 9px 18px;
  background: var(--ink); color: var(--cream);
  border-radius: 18px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #0d2d5c; transform: translateY(-1px); }

section { padding: 110px 40px; position: relative; }
.container { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--green-deep); }

/* HERO — centered */
.hero {
  padding-top: 150px; padding-bottom: 90px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; right: -250px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(143, 163, 30, 0.22) 0%, rgba(143, 163, 30, 0) 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(11, 36, 71, 0.06) 0%, rgba(11, 36, 71, 0) 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.portrait-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  margin: 0 auto 30px auto;
  position: relative;
  background: linear-gradient(140deg, var(--green-soft) 0%, var(--green) 100%);
  padding: 5px;
}
.portrait-circle::before {
  content: ''; position: absolute; inset: -14px;
  border: 1px solid rgba(143, 163, 30, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.portrait-circle::after {
  content: ''; position: absolute; inset: -28px;
  border: 1px solid rgba(143, 163, 30, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.portrait-circle img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.hero .hi {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 1.02;
  color: var(--black);
  letter-spacing: -0.025em;
  margin: 10px 0 8px 0;
}
.hero .hi em {
  font-style: italic; color: var(--green-deep);
  font-variation-settings: "opsz" 144, "wght" 400;
}
.hero .hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 18px;
}
.hero .hero-stamp::before,
.hero .hero-stamp::after {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--green-deep);
}
.hero .tagline {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 18px;
  font-style: normal;
}
.hero .sub {
  font-size: 17px; color: var(--soft); line-height: 1.6;
  max-width: 640px; margin: 0 auto 32px auto;
}
.hero .ctas {
  display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(95deg, var(--ink) 0%, var(--green-deep) 100%);
  color: var(--cream);
  font-size: 14px; font-weight: 500;
  padding: 14px 24px;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 36, 71, 0.18);
}
.btn-secondary {
  font-size: 14px; font-weight: 500;
  padding: 14px 4px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--green-deep); border-color: var(--green-deep); }
.hero .solo-line {
  margin-top: 22px;
  font-size: 13px; color: var(--muted);
  font-style: italic;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.hero .pricing {
  margin-top: 6px;
  font-size: 12px; color: var(--muted);
}
.hero .pdf-line {
  margin-top: 20px;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 96, "wght" 400;
  font-style: italic;
  font-size: 14px;
  color: var(--soft);
}
.hero .pdf-line a {
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--green-deep);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.hero .pdf-line a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* LOOM */
.loom { padding-top: 30px; padding-bottom: 80px; }
.loom-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #1a2f52 0%, #0B2447 100%);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s;
  max-width: 960px; margin: 0 auto;
}
.loom-frame:hover { transform: scale(1.005); }
.loom-frame::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%; background: var(--green);
}
.loom-play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
  width: 0; height: 0;
  border-left: 22px solid var(--cream);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.loom-caption { position: absolute; bottom: 26px; left: 26px; color: var(--cream); font-size: 13px; z-index: 2; }
.loom-caption strong { display: block; font-family: "Fraunces", serif; font-size: 22px; font-variation-settings: "opsz" 96, "wght" 500; margin-bottom: 4px; }
.loom-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }

/* WHY */
.why { background: linear-gradient(180deg, var(--cream) 0%, #F4F1E8 100%); padding-top: 140px; padding-bottom: 140px; }
.why-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.why-label {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 400;
  font-style: italic;
  font-size: 22px; color: var(--green-deep); line-height: 1.2;
  padding-top: 16px;
}
.why-body {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: 32px; line-height: 1.3;
  color: var(--black); letter-spacing: -0.015em;
}
.why-body strong {
  font-variation-settings: "opsz" 96, "wght" 500;
  color: var(--ink);
}

/* SOCIAL */
.social { padding-top: 100px; padding-bottom: 60px; }
.social-rail { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.t-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 32px 26px;
  position: relative;
}
.t-card.placeholder {
  background: var(--cream);
  border-style: dashed;
  font-style: italic;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 15px; text-align: center; line-height: 1.5;
}

/* DELIVERABLES */
.deliverables { padding-top: 110px; padding-bottom: 110px; }
.d-heading {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: 48px; line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 20px 0;
  max-width: 760px;
}
.d-sub {
  font-size: 16px; color: var(--soft);
  max-width: 560px; margin-bottom: 60px;
}
.d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.d-card {
  padding: 32px 30px;
  background: white;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.d-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(11, 36, 71, 0.08); }
.d-num {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: 18px; font-style: italic;
  color: var(--green-deep); margin-bottom: 12px;
}
.d-title {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 22px; line-height: 1.2;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
}
.d-body { font-size: 14px; color: var(--soft); line-height: 1.55; }

/* ABOUT */
.about { background: linear-gradient(180deg, #F4F1E8 0%, var(--cream) 100%); padding-top: 110px; padding-bottom: 110px; }
.about-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 60px; align-items: center; }
.about-photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green-soft) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
  max-width: 300px;
  padding: 5px;
}
.about-photo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
}
.about-heading {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: 42px; line-height: 1.1;
  letter-spacing: -0.02em; margin: 14px 0 20px 0;
}
.about-body { font-size: 16px; color: var(--soft); line-height: 1.7; max-width: 580px; }
.about-body p + p { margin-top: 16px; }
.about-meta {
  margin-top: 28px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.about-meta strong { color: var(--ink); }

/* FAQ */
.faq { padding-top: 110px; padding-bottom: 110px; }
.faq-heading {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: 44px; line-height: 1.05;
  letter-spacing: -0.02em; margin: 14px 0 50px 0;
}
details { border-top: 1px solid var(--rule); padding: 26px 0; }
details:last-of-type { border-bottom: 1px solid var(--rule); }
summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 20px; color: var(--ink); letter-spacing: -0.005em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: "Inter Tight", sans-serif;
  font-weight: 300; font-size: 24px; color: var(--green-deep);
  transition: transform 0.25s;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin-top: 16px;
  font-size: 15px; color: var(--soft); line-height: 1.65;
  max-width: 780px;
}

/* BOOK */
.book {
  background: var(--ink);
  color: var(--cream);
  padding-top: 110px; padding-bottom: 110px;
  position: relative; overflow: hidden;
}
.book::before {
  content: ''; position: absolute;
  bottom: -250px; right: -250px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(143, 163, 30, 0.28) 0%, rgba(143, 163, 30, 0) 65%);
  pointer-events: none;
}
.book-grid {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 40px;
  align-items: center;
  text-align: center;
}
.book-intro { max-width: 820px; }
.book-intro .eyebrow { justify-content: center; }
.book-intro .about-meta { justify-content: center; }
.book-widget { width: 100%; max-width: 1040px; margin: 0 auto; }
.book-heading {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: 44px; line-height: 1.05;
  letter-spacing: -0.02em; margin: 14px 0 20px 0;
}
.book-heading em {
  font-style: italic; color: var(--green-soft);
  font-variation-settings: "opsz" 144, "wght" 400;
}
.book-sub { font-size: 16px; color: rgba(250, 248, 244, 0.75); line-height: 1.6; margin-bottom: 28px; }
.book .eyebrow { color: rgba(250, 248, 244, 0.6); }
.book .eyebrow::before { background: var(--green-soft); }

.calendly-inline-widget { min-width: 320px; height: 480px; background: var(--cream); border-radius: 4px; }

.calendly-mock {
  background: var(--cream); color: var(--black);
  border-radius: 4px; padding: 36px 28px;
  min-height: 420px;
  font-family: "Inter Tight", sans-serif;
  position: relative;
}
.cal-head {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.cal-title { font-family: "Fraunces", serif; font-variation-settings: "opsz" 96, "wght" 500; font-size: 22px; color: var(--ink); }
.cal-dur { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.cal-note {
  position: absolute; bottom: 18px; left: 28px; right: 28px;
  text-align: center; font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); font-style: italic;
}

/* FOOTER */
footer { background: var(--cream); padding: 48px 40px 32px 40px; border-top: 1px solid var(--rule); }
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px;
}
.footer-wm { font-family: "Fraunces", serif; font-variation-settings: "opsz" 144, "wght" 500; font-size: 22px; color: var(--ink); letter-spacing: -0.015em; }
.footer-wm .ai { font-variation-settings: "opsz" 144, "wght" 400; font-style: italic; }
.footer-meta { display: flex; gap: 32px; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; flex-wrap: wrap; }
.footer-meta a:hover { color: var(--green-deep); }
.copyright {
  max-width: 1240px; margin: 32px auto 0 auto;
  padding-top: 20px; border-top: 1px solid var(--rule);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  display: flex; justify-content: space-between;
}

/* MOTION */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (max-width: 900px) {
  section { padding: 70px 22px; }
  .nav-inner { padding: 14px 22px; }
  .why-grid, .about-grid, .book-grid, .d-grid, .social-rail {
    grid-template-columns: 1fr; gap: 30px;
  }
  .why-body, .d-heading, .about-heading, .faq-heading, .book-heading { font-size: 32px; }
  .portrait-circle { width: 190px; height: 190px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
