:root {
  --bg: #f6f3ee;
  --bg-alt: #e9e3da;
  --card: #ffffff;
  --text: #1f2933;
  --muted-text: #4b5563;
  --accent: #2a5a8c;
  --accent-soft: #e0edf7;
  --accent-dark: #1d3f63;
  --border-soft: #d2c7ba;
  --brown: #8b5e3c;
  --cream: #fdfaf5;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #fdfaf5 0, #f6f3ee 40%, #ece5da 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

p {
  line-height: 1.6;
  color: var(--muted-text);
}

h1,
h2,
h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    sans-serif;
  letter-spacing: 0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(246, 243, 238, 0.96),
    rgba(246, 243, 238, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(210, 199, 186, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.4rem 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  height: 200px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--muted-text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-dark);
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero--above-fold {
  padding: clamp(1rem, 4vh, 2rem) 0 clamp(1.25rem, 3vh, 2rem);
  min-height: calc(100svh - 14rem);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero--above-fold .hero-inner {
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero--above-fold .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: 40rem;
}

.hero--above-fold h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
}

.hero--above-fold .hero-body {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.55;
  margin: 0 0 0.65rem;
}

.hero-affirm {
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: #5c6370;
  text-align: center;
  font-weight: 500;
}

.hero-trust {
  margin: 0 0 0.55rem;
  font-size: clamp(0.84rem, 1.08vw, 0.93rem);
  line-height: 1.52;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #4b5563;
  text-align: center;
}

.hero-credential {
  margin: 0 0 1.95rem;
  font-size: clamp(0.87rem, 1.12vw, 0.96rem);
  line-height: 1.48;
  letter-spacing: 0.02em;
  color: #4b5563;
  text-align: center;
}

.hero-credential-name {
  font-weight: 600;
  color: var(--text);
}

.hero-form-helper {
  margin: 0 0 1.45rem;
  padding: 0 0.25rem;
  font-size: 0.76rem;
  line-height: 1.55;
  color: #8b9099;
  text-align: center;
}

.hero-form-preface {
  margin: 0 0 1.1rem;
  padding: 0 0.2rem;
  font-size: 0.84rem;
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: #6d7480;
  text-align: center;
  font-weight: 400;
}

.hero--above-fold .hero-actions {
  margin: 0;
}

.hero-form-wrap {
  width: 100%;
  max-width: min(26.5rem, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.35rem;
}

.hero-form {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-form-intro {
  margin: 0 0 1.45rem;
  text-align: center;
}

.hero-form-intro p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted-text);
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 1.45rem;
}

.form-field:last-of-type {
  margin-bottom: 1.45rem;
}

.form-field label {
  display: block;
  align-self: center;
  margin-bottom: 0.45rem;
  max-width: 100%;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}

.form-field input,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.95rem 1.15rem;
  font-size: 16px;
  line-height: 1.5;
  font-family: inherit;
  color: var(--text);
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(180, 175, 168, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(160, 155, 148, 0.55);
  background: rgba(255, 255, 255, 0.88);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(42, 90, 140, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 90, 140, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
  vertical-align: top;
}

button.hero-form-submit.button {
  width: 100%;
  max-width: 100%;
  margin-top: 0.35rem;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fdfaf5;
  box-shadow: 0 10px 28px rgba(21, 45, 75, 0.22);
}

.hero-form .button.primary:hover {
  box-shadow: 0 12px 32px rgba(21, 45, 75, 0.26);
}

.hero-form .button.primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(21, 45, 75, 0.2);
}

.hero-form-button-note {
  margin: 0.65rem 0 0;
  padding: 0 0.35rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6d7480;
  text-align: center;
  font-weight: 400;
}

.hero-form-error {
  margin: 0.65rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #9a4c4c;
  text-align: center;
}

.hero-form-success {
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(210, 199, 186, 0.55);
  box-shadow: var(--shadow-soft);
}

.hero-form-success[hidden] {
  display: none !important;
}

.hero-what-next {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(210, 199, 186, 0.55);
  text-align: center;
}

.hero-form-success:not([hidden]) + .hero-what-next {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.hero-what-next-title {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
}

.hero-what-next-item {
  margin: 0 0 0.45rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted-text);
}

.hero-what-next-item:last-child {
  margin-bottom: 0;
}

.hero-form-success-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.hero-form-success-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted-text);
}

.hero-form-success-note a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-form-success:focus {
  outline: none;
}

.hero-form-success:focus-visible {
  outline: 2px solid rgba(42, 90, 140, 0.35);
  outline-offset: 3px;
}

.hero-form-fields[hidden] {
  display: none !important;
}

.hero-below-form {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(210, 199, 186, 0.65);
  text-align: center;
  max-width: min(26.5rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-below-form p {
  margin: 0 0 0.65rem;
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  line-height: 1.55;
  color: var(--muted-text);
}

.hero-below-form p:first-child {
  font-weight: 500;
  color: var(--text);
}

.hero-below-form p:last-child {
  margin-bottom: 0;
}

.fit-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.fit-section-inner {
  max-width: 40rem;
}

.fit-section h2 {
  margin-bottom: 0.85rem;
}

.fit-section .bulleted {
  margin-top: 0.25rem;
}

.hero-after-words {
  padding: 2.5rem 0 2.75rem;
  border-top: 1px solid rgba(210, 199, 186, 0.55);
  background: rgba(253, 250, 245, 0.45);
}

.hero-after-words-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.hero-after-words-inner p {
  margin: 0 0 0.65rem;
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  line-height: 1.6;
  color: var(--muted-text);
}

.hero-after-words-inner p:first-child {
  font-weight: 500;
  color: var(--text);
}

.hero-after-words-inner p:last-child {
  margin-bottom: 0;
}

.hero-follow {
  padding: 0 0 2.5rem;
}

.hero-follow-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 40rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--brown);
  margin-bottom: 0.7rem;
}

.hero-body {
  margin-top: 0.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.15s ease-out,
    border-color 0.15s ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fdfaf5;
  box-shadow: 0 16px 35px rgba(21, 45, 75, 0.32);
}

.button.ghost {
  background: rgba(253, 250, 245, 0.7);
  border-color: rgba(210, 199, 186, 0.9);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.button.ghost:hover {
  background: #fdfaf5;
}

.note {
  font-size: 0.82rem;
  color: #6b7280;
}

.note.small {
  font-size: 0.78rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(210, 199, 186, 0.85);
  box-shadow: var(--shadow-soft);
}

.calm-card {
  background: radial-gradient(circle at 0 0, #fdfaf5 0, #e0edf7 40%, #d6c9bc 100%);
}

.muted-card {
  background: rgba(255, 255, 255, 0.9);
}

.card-title {
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.card-body {
  margin: 0;
}

.card-body.small {
  font-size: 0.85rem;
}

.section {
  padding: 3.7rem 0;
}

.section.alt {
  background: radial-gradient(circle at top right, #fdfaf5 0, #e9e3da 38%, #ddcfbd 100%);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

#about .two-column > div:first-child p + p {
  margin-top: 0.85rem;
}

.summary-card,
.contact-card {
  background: rgba(253, 250, 245, 0.95);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(210, 199, 186, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.summary-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
}

.summary-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

.summary-card li {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 0.3rem;
}

.bulleted {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0.5rem;
}

.bulleted li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 0.35rem;
}

.bulleted li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.12rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.6rem;
}

.service-card {
  background: rgba(253, 250, 245, 0.96);
}

.service-card h3 {
  margin-top: 0.1rem;
}

.service-card p {
  font-size: 0.9rem;
}

.contact-email a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-crisis {
  margin: 1.25rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(210, 199, 186, 0.65);
  font-size: 0.72rem;
  line-height: 1.45;
  color: #9ca3af;
}

.site-footer {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(210, 199, 186, 0.9);
  background: rgba(246, 243, 238, 0.98);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.small {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero:not(.hero--above-fold) {
    padding-top: 4.2rem;
  }

  .hero--above-fold {
    min-height: calc(100svh - 18rem);
  }

  .hero-follow-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-inline: 0.4rem;
  }

  .nav {
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero--above-fold .hero-body {
    margin-bottom: 0.6rem;
  }

  .hero-affirm {
    margin-bottom: 0.75rem;
    padding: 0 0.2rem;
    font-size: 0.94rem;
  }

  .hero-trust {
    margin-bottom: 0.4rem;
    padding: 0 0.15rem;
  }

  .hero-credential {
    margin-bottom: 1.5rem;
    font-size: 0.84rem;
  }

  .hero-form-helper {
    margin-bottom: 1.2rem;
    font-size: 0.74rem;
  }

  .hero-form-intro {
    margin-bottom: 1.5rem;
  }

  .hero-form-wrap {
    max-width: 100%;
  }

  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }

  button.hero-form-submit.button {
    min-height: 2.875rem;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .hero-form-success {
    padding: 1.15rem 0.85rem;
  }
}

