:root {
  --ink: #1e2924;
  --ink-soft: #52605a;
  --forest: #173f32;
  --forest-light: #275947;
  --saffron: #db7b35;
  --saffron-soft: #f1c59a;
  --paper: #f4efe3;
  --paper-deep: #e7ddca;
  --cream: #fffdf7;
  --line: rgba(30, 41, 36, 0.16);
  --shadow: 0 30px 80px rgba(44, 53, 44, 0.16);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  max-width: 100%;
  overflow-x: clip;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; }
.brand { text-decoration: none; font-family: Georgia, serif; font-weight: 700; font-size: 19px; }
.brand img, .footer-brand img { filter: drop-shadow(0 4px 8px rgba(30, 41, 36, .12)); }
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
nav a { text-decoration: none; }
nav a:hover { color: var(--saffron); }
.nav-contact { border: 1px solid var(--ink); padding: 9px 17px; border-radius: 99px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 100px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -350px;
  top: 40px;
  border: 1px solid rgba(219, 123, 53, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(219, 123, 53, .035), 0 0 0 90px rgba(219, 123, 53, .025);
  pointer-events: none;
}
.eyebrow, .kicker {
  color: var(--forest-light);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 1px; background: var(--saffron); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; line-height: 1.04; }
h1 { margin: 22px 0 28px; font-size: clamp(54px, 6.1vw, 88px); font-weight: 500; }
h1 em { color: var(--saffron); font-weight: 400; }
.hero-lede { max-width: 600px; font-size: 20px; line-height: 1.65; color: var(--ink-soft); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--forest); }
.button-primary:hover { background: var(--forest-light); }
.text-link { font-size: 14px; font-weight: 750; text-underline-offset: 5px; }
.text-link span { color: var(--saffron); margin-left: 5px; }
.hero-note { margin-top: 24px; color: #6d756f; font-size: 12px; }

.conversation-card {
  position: relative;
  background: var(--cream);
  padding: 20px;
  border: 1px solid rgba(30, 41, 36, .1);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.conversation-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 24px -20px -20px 24px;
  border: 1px solid rgba(219, 123, 53, .4);
  border-radius: 18px;
}
.conversation-top { display: flex; align-items: center; gap: 12px; padding: 3px 3px 18px; border-bottom: 1px solid var(--line); }
.conversation-top div:nth-child(2) { display: flex; flex-direction: column; flex: 1; line-height: 1.35; }
.conversation-top strong { font-family: Georgia, serif; font-size: 15px; }
.conversation-top span { font-size: 10px; color: var(--ink-soft); }
.mini-mark { display: grid; place-items: center; width: 39px; height: 39px; background: var(--forest); color: var(--saffron-soft); border-radius: 50%; font-family: Georgia, serif; }
.status-dot { width: 8px; height: 8px; background: #3c9f70; border-radius: 50%; box-shadow: 0 0 0 5px rgba(60, 159, 112, .12); }
.message { margin-top: 18px; padding: 15px 17px; font-size: 13px; line-height: 1.65; }
.message-user { margin-left: 55px; color: white; background: var(--forest); border-radius: 14px 14px 2px 14px; }
.message-guide { margin-right: 28px; background: #f2ecdf; border-radius: 14px 14px 14px 2px; }
.message-guide p { margin: 0 0 12px; }
.message-guide blockquote { margin: 14px 0; padding: 12px 14px; color: #4d4e45; background: rgba(255,255,255,.62); border-left: 2px solid var(--saffron); font-family: Georgia, serif; font-style: italic; }
.message-guide cite { display: block; margin-top: 5px; color: var(--saffron); font-family: inherit; font-size: 10px; font-style: normal; font-weight: 700; }
.message-guide .practice { margin: 0; padding-top: 11px; border-top: 1px solid var(--line); font-size: 11px; }
.practice span { display: block; margin-bottom: 2px; color: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.composer { margin-top: 18px; min-height: 48px; padding: 0 8px 0 15px; display: flex; align-items: center; justify-content: space-between; color: #858981; background: white; border: 1px solid var(--line); border-radius: 24px; font-size: 11px; }
.composer b { display: grid; place-items: center; width: 34px; height: 34px; color: white; background: var(--saffron); border-radius: 50%; font-size: 16px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: white;
  padding: 0 max(40px, calc((100vw - 1180px) / 2));
}
.trust-row > div { min-height: 134px; display: grid; grid-template-columns: 42px 1fr; align-content: center; padding: 22px 36px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-row > div:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.trust-row span { grid-row: 1 / 3; color: var(--saffron-soft); font-family: Georgia, serif; font-size: 16px; }
.trust-row strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.trust-row small { color: rgba(255,255,255,.62); font-size: 11px; }

.section { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 125px 0; }
.section-heading { max-width: 820px; margin: 0 auto 70px; text-align: center; }
.section-heading.compact { margin-bottom: 45px; }
h2 { margin: 15px 0 22px; font-size: clamp(39px, 4.5vw, 62px); font-weight: 500; }
.section-heading > p:last-child { max-width: 650px; margin: auto; color: var(--ink-soft); font-size: 17px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps article { padding: 35px 42px 10px; border-right: 1px solid var(--line); }
.steps article:first-child { padding-left: 0; }
.steps article:last-child { padding-right: 0; border-right: 0; }
.step-number { display: grid; place-items: center; width: 38px; height: 38px; color: var(--saffron); border: 1px solid var(--saffron); border-radius: 50%; font-family: Georgia, serif; }
.steps h3 { margin: 28px 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.steps p { color: var(--ink-soft); font-size: 14px; }

.principles { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; border-top: 1px solid var(--line); }
.principles-art { position: relative; height: 460px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--forest); }
.principles-art::before { content: ""; position: absolute; width: 220px; height: 220px; background: var(--saffron); border-radius: 50%; opacity: .9; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.orbit-one { width: 330px; height: 330px; }
.orbit-two { width: 440px; height: 440px; }
.sanskrit-mark { position: relative; z-index: 2; color: var(--cream); font-family: Georgia, serif; font-size: 66px; }
.principles-art p { position: absolute; z-index: 2; bottom: 36px; margin: 0; color: rgba(255,255,255,.65); font-family: Georgia, serif; font-size: 13px; letter-spacing: .18em; }
.principles-copy > p:not(.kicker) { color: var(--ink-soft); font-size: 17px; }
.principles-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.principles-copy li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 650; }
.principles-copy li span { color: var(--saffron); margin-right: 11px; }

.faq { border-top: 1px solid var(--line); }
.faq-grid { max-width: 900px; margin: auto; }
details { border-bottom: 1px solid var(--line); }
summary { padding: 24px 42px 24px 0; position: relative; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 22px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; color: var(--saffron); font-family: sans-serif; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; margin: -5px 0 25px; color: var(--ink-soft); font-size: 14px; }

.closing { padding: 80px max(40px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; color: white; background: var(--saffron); }
.closing .kicker { color: rgba(255,255,255,.72); }
.closing h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(36px, 4vw, 57px); }
.button-light { color: var(--forest); background: var(--cream); white-space: nowrap; }

footer { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 55px 0 35px; display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: center; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: Georgia, serif; font-size: 17px; }
.footer-brand span { color: var(--ink-soft); font-size: 11px; }
.footer-links { display: flex; gap: 25px; font-size: 12px; font-weight: 700; }
.footer-links a { text-underline-offset: 4px; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 25px; color: #777f79; border-top: 1px solid var(--line); font-size: 10px; }

.legal { width: min(760px, calc(100% - 40px)); margin: 80px auto 120px; }
.legal h1 { font-size: clamp(46px, 7vw, 72px); }
.legal .updated { color: var(--saffron); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal h2 { margin-top: 46px; font-size: 30px; letter-spacing: -.02em; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15px; }
.legal a { color: var(--forest); font-weight: 700; }

@media (max-width: 900px) {
  nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-copy { max-width: 680px; }
  .conversation-card { max-width: 600px; margin: auto; transform: none; }
  .trust-row { grid-template-columns: 1fr; padding: 0 25px; }
  .trust-row > div, .trust-row > div:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article:first-child, .steps article:last-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles { grid-template-columns: 1fr; gap: 60px; }
  .principles-art { max-width: 620px; width: 100%; margin: auto; }
  .closing { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { min-height: 76px; }
  .brand { font-size: 16px; }
  .brand img { width: 34px; height: 34px; }
  .nav-contact { padding: 7px 13px; font-size: 12px; }
  .hero { width: min(100% - 30px, 1180px); padding: 55px 0 75px; gap: 55px; }
  h1 { font-size: 49px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .conversation-card { padding: 13px; }
  .conversation-card::after { inset: 16px 0 -12px 12px; }
  .message-user { margin-left: 24px; }
  .message-guide { margin-right: 8px; }
  .section { padding: 88px 0; }
  .section-heading { text-align: left; margin-bottom: 50px; }
  .section-heading > p:last-child { margin: 0; }
  .principles-art { height: 370px; }
  .orbit-one { width: 270px; height: 270px; }
  .orbit-two { width: 350px; height: 350px; }
  .closing { padding: 65px 25px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
