/* ==================================================
   Gather (gatherchart.com) — site styles
   ================================================== */

:root {
  --cream: #fbf8f1;
  --cream-2: #f4eee1;
  --ink: #1e2b26;
  --green: #1f4a38;
  --green-soft: #2e6b51;
  --apricot: #e8946a;
  --apricot-deep: #d97b4c;
  --line: rgba(30, 43, 38, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--apricot-deep);
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.btn:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}

.btn.small {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* HERO */
.hero {
  padding: 72px 0 40px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  background: rgba(232, 148, 106, 0.14);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin: 0 auto 18px;
}

h1 em {
  font-style: italic;
  color: var(--green);
}

.sub {
  font-size: 1.15rem;
  color: rgba(30, 43, 38, 0.72);
  max-width: 52ch;
  margin: 0 auto 34px;
}

/* CHIPS */
.chips {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 36px 0 0;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(30, 43, 38, 0.05);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--apricot);
}

.dot.g {
  background: var(--green-soft);
}

/* HOW */
.how {
  padding: 84px 0 10px;
  text-align: center;
}

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

@media (max-width: 760px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: left;
}

.step .num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--apricot-deep);
  font-weight: 600;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: rgba(30, 43, 38, 0.7);
}

/* CONVERSATION / NO-APP */
.convo {
  padding: 88px 0 0;
}

.convo-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 8px;
}

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

.convo h2 {
  text-align: left;
}

.convo .lede2 {
  color: rgba(30, 43, 38, 0.72);
  font-size: 1.03rem;
  margin-top: 6px;
}

.mini {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  align-items: flex-start;
}

.mini .ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(31, 74, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.mini p {
  font-size: 0.95rem;
  color: rgba(30, 43, 38, 0.75);
}

.mini p strong {
  color: var(--ink);
}

.chat-phone {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 22px 18px 26px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 26px 60px -22px rgba(31, 74, 56, 0.3);
}

.chat-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: rgba(30, 43, 38, 0.55);
  margin-bottom: 16px;
}

.bub {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.bub.them {
  background: var(--cream-2);
  border-bottom-left-radius: 4px;
}

.bub.me {
  background: var(--green);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.bub .pdf {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.78rem;
}

/* URGENCY + FORM */
.cohort {
  margin: 90px 0 0;
  background: var(--green);
  border-radius: 32px;
  padding: 64px 34px;
  text-align: center;
  color: var(--cream);
}

.cohort h2 {
  color: #fff;
}

.cohort .sub2 {
  color: rgba(251, 248, 241, 0.78);
  max-width: 46ch;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(251, 248, 241, 0.9);
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.label-row span {
  font-weight: 400;
  color: rgba(251, 248, 241, 0.6);
}

input,
select {
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(251, 248, 241, 0.25);
  background: rgba(251, 248, 241, 0.1);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.98rem;
  width: 100%;
}

input:focus,
select:focus {
  outline: 2px solid var(--apricot);
  outline-offset: 1px;
}

input::placeholder {
  color: rgba(251, 248, 241, 0.6);
}

select {
  color: rgba(251, 248, 241, 0.85);
}

select option {
  color: var(--ink);
}

label.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(251, 248, 241, 0.78);
  line-height: 1.5;
}

label.consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--apricot);
  flex: 0 0 auto;
}

label.consent a {
  color: #fff;
}

.cf-turnstile {
  display: flex;
  justify-content: center;
}

.btn.cta {
  background: var(--apricot);
  color: #3a2416;
  font-size: 1.02rem;
  padding: 16px 28px;
  margin-top: 6px;
  width: 100%;
}

.btn.cta:hover {
  background: var(--apricot-deep);
  color: #fff;
}

.btn.cta:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.fine {
  font-size: 0.8rem;
  color: rgba(251, 248, 241, 0.6);
  margin-top: 16px;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.form-status {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(251, 248, 241, 0.1);
  border: 1px solid rgba(251, 248, 241, 0.25);
  border-radius: 16px;
  padding: 26px 24px;
}

.form-status h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}

.form-status p {
  color: rgba(251, 248, 241, 0.78);
  font-size: 0.95rem;
}

/* TRUST + FOOTER */
.trust {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 56px 0 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(30, 43, 38, 0.75);
}

.trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 24px 44px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(30, 43, 38, 0.55);
}

footer a {
  color: inherit;
}

/* ==================================================
   Legal pages (privacy, terms)
   ================================================== */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 24px;
}

.legal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  letter-spacing: -0.02em;
  max-width: none;
  margin: 0 0 12px;
}

.legal__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-size: 0.88rem;
  color: rgba(30, 43, 38, 0.6);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.legal h2 {
  font-size: 1.35rem;
  text-align: left;
  margin: 34px 0 10px;
}

.legal p,
.legal li {
  font-size: 0.98rem;
  color: rgba(30, 43, 38, 0.78);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal a {
  color: var(--green);
}

.legal address {
  font-style: normal;
  font-size: 0.98rem;
  color: rgba(30, 43, 38, 0.78);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 8px;
}

/* Elements that ship visible and are hidden by script after a successful
   submit. `form` and these paragraphs carry a display value, which beats the
   browser's `[hidden] { display: none }`, so the attribute needs help here. */
form[hidden],
.form-status[hidden],
.cohort .sub2[hidden],
.cohort .fine[hidden] {
  display: none;
}
