/* ═══════════════════════════════════════════════════════════
   BLUEPRINT — Strength-Based Career Exploration
   Palette: warm off-white bg · forest green accent · sage mid · amber highlight
   Fonts: Instrument Serif (display) · DM Sans (body)
═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Brand */
  --green-deep:   #2D5016;
  --green-mid:    #3A7219;
  --green-bright: #4E9424;
  --green-light:  #EAF3E2;
  --green-border: #C4DFB0;

  --sage-mid:     #6B8F5E;
  --sage-light:   #ECF2E9;

  --amber:        #B85C00;
  --amber-light:  #FDF0E3;

  /* Neutrals */
  --bg:           #F7F5F0;
  --bg-alt:       #EEEAE3;
  --bg-dark:      #2D5016;

  --text:         #1C1A16;
  --text-body:    #3D3A33;
  --text-muted:   #7A766E;
  --text-faint:   #B0ADA6;

  --border:       #DDD8CF;
  --divider:      #E8E4DC;

  /* Type */
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Text scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.75rem, 1rem + 5vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;

  /* Radii */
  --r-sm: 0.375rem;    --r-md: 0.625rem;    --r-lg: 1rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.2 0.02 90 / 0.06);
  --shadow-md: 0 4px 16px oklch(0.2 0.02 90 / 0.08);
  --shadow-lg: 0 12px 40px oklch(0.2 0.02 90 / 0.12);

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --content: 1160px;
  --nav-h: 72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-deep); text-decoration: underline; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
ul, ol { list-style: none; }

/* ─── Scroll animations ─── */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .fade-up.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  padding: 11px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--green-border);
}
.btn--sm { padding: 8px 16px; font-size: var(--text-xs); }
.btn--lg { padding: 14px 32px; font-size: var(--text-sm); }
.btn--full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247,245,240,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow var(--transition);
}
.nav--scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--content);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none !important;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: var(--space-8);
  margin-left: auto;
  margin-right: var(--space-4);
}
.nav__link {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
}
.nav__link:hover { color: var(--text); text-decoration: none; }

/* ══════════════════════════════════════
   EYEBROW
══════════════════════════════════════ */
.eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: var(--space-4);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
  max-width: var(--content);
  margin: 0 auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  line-height: 1.05;
}
.hero__heading em {
  font-style: italic;
  color: var(--green-mid);
}
.hero__sub {
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--text-body);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: nowrap;
  overflow-x: auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item__number {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.trust-item__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Catalyst Edge Card in Hero */
.catalyst-card {
  background: white;
  border: 1px solid var(--green-border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.catalyst-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--divider);
}
.catalyst-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.catalyst-card__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text);
}
.catalyst-card__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.catalyst-card__section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.catalyst-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.ce-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.ce-tag--green {
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--green-border);
}
.ce-tag--sage {
  background: var(--sage-light);
  color: var(--sage-mid);
  border: 1px solid #C6D9C0;
}
.ce-tag--amber {
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid #F0CFAF;
}
.catalyst-card__rec {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-body);
  max-width: none;
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-strip {
  background: var(--green-deep);
  padding: var(--space-3) 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: var(--space-8);
  animation: marquee 28s linear infinite;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-track .dot { color: var(--green-bright); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
}
.section--offset { background: var(--bg-alt); }
.section__inner {
  max-width: var(--content);
  margin: 0 auto;
}
.section__inner--narrow {
  max-width: 720px;
}
.section__header { margin-bottom: var(--space-12); }
.section__header--centered { text-align: center; }
.section__heading {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.section__heading em {
  font-style: italic;
  color: var(--green-mid);
}
.section__sub {
  font-size: var(--text-base);
  color: var(--text-body);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.72;
}

/* ══════════════════════════════════════
   SESSION CARDS (How It Works)
══════════════════════════════════════ */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.session-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--divider);
  align-items: start;
}
.session-card:first-child { border-top: 1px solid var(--divider); }
.session-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--green-border);
  line-height: 1;
  padding-top: 4px;
}
.session-card__content {
  display: flex;
  gap: var(--space-5);
  align-items: start;
}
.session-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-top: 2px;
}
.session-card__title {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-1);
}
.session-card__tool {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: var(--space-2);
}
.session-card__desc {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-body);
  max-width: 68ch;
}

/* ══════════════════════════════════════
   ASSESSMENT CARDS
══════════════════════════════════════ */
.assess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.assess-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.assess-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-border);
}
.assess-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-2);
}
.assess-card__badge--primary {
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--green-border);
}
.assess-card__badge--secondary {
  background: var(--sage-light);
  color: var(--sage-mid);
  border: 1px solid #C6D9C0;
}
.assess-card__badge--supporting {
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid #F0CFAF;
}
.assess-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
}
.assess-card__org {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
}
.assess-card__desc {
  font-size: var(--text-sm);
  line-height: 1.68;
  color: var(--text-body);
  flex: 1;
  max-width: none;
}
.assess-card__facts {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--divider);
}
.assess-card__facts li {
  font-size: var(--text-xs);
  color: var(--text-body);
  padding-left: var(--space-5);
  position: relative;
  max-width: none;
}
.assess-card__facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-border);
  transform: translateY(-2px);
}
.testimonial__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--text);
  flex: 1;
  max-width: none;
}
.testimonial__footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--divider);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}
.testimonial__avatar--blue {
  background: #EBF2FA;
  border-color: #B8D4EC;
  color: #1E5C8F;
}
.testimonial__avatar--amber {
  background: var(--amber-light);
  border-color: #F0CFAF;
  color: var(--amber);
}
.testimonial__avatar--sage {
  background: var(--sage-light);
  border-color: #C6D9C0;
  color: var(--sage-mid);
}
.testimonial__name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}
.testimonial__detail {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}
.about__monogram-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-light);
  border: 3px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__monogram {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--green-mid);
}
.about__credential-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.about__cred {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--divider);
}
.about__cred:last-child { border-bottom: none; padding-bottom: 0; }
.about__cred-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.about__cred-value {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.5;
  max-width: none;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.about__content .section__heading { margin-bottom: var(--space-2); }
.about__content p { font-size: var(--text-base); line-height: 1.75; }

/* ══════════════════════════════════════
   INTAKE FORM
══════════════════════════════════════ */
.intake-section {
  background: var(--bg-alt);
}
.intake-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.form-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.form-section__title {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--divider);
  margin-bottom: var(--space-2);
}
.form-section--consent {
  gap: var(--space-4);
}
.form-row { display: flex; flex-direction: column; gap: var(--space-6); }
.form-row--two { flex-direction: row; gap: var(--space-5); }
.form-row--two .form-group { flex: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}
.required { color: var(--green-mid); }
.optional { font-size: var(--text-xs); color: var(--text-muted); font-weight: 400; }
.form-input {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(58, 114, 25, 0.12);
}
.form-input[aria-invalid="true"] {
  border-color: #B91C1C;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237A766E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: none;
}
.form-error {
  font-size: var(--text-xs);
  color: #B91C1C;
  font-weight: 600;
  min-height: 1rem;
}
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-body);
  cursor: pointer;
  line-height: 1.55;
  max-width: none;
}
.form-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border);
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--green-mid);
}
.form-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.form-submit-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  max-width: none;
}

/* Success state */
.form-success {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: white;
  border: 1px solid var(--green-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.form-success[hidden] { display: none; }
.form-success__icon {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-bottom: var(--space-2);
}
.form-success__heading {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--text);
}
.form-success__body {
  font-size: var(--text-base);
  color: var(--text-body);
  max-width: 48ch;
  line-height: 1.7;
}
.form-success__email {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: var(--space-12) var(--space-8);
}
.footer__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .nav__logo-text { color: #fff; }
.footer__tagline {
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  line-height: 1.6;
  max-width: 36ch;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-2);
}
.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__link:hover { color: #fff; text-decoration: none; }
.footer__link--cta { color: var(--green-bright); font-weight: 600; }
.footer__link--cta:hover { color: #7FD455; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.footer__email {
  color: var(--green-bright);
  font-weight: 600;
  text-decoration: none;
}
.footer__email:hover { color: #7FD455; text-decoration: none; }
.footer__site { color: rgba(255,255,255,0.45); font-size: var(--text-xs); max-width: none; }
.footer__bottom {
  max-width: var(--content);
  margin: var(--space-6) auto 0;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__visual { max-width: 480px; }
  .about-wrap { grid-template-columns: 1fr; }
  .about__visual { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
  .about__monogram-ring { flex-shrink: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero { padding: var(--space-10) var(--space-5); }
  .assess-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .session-card { grid-template-columns: 48px 1fr; }
  .session-card__num { font-size: var(--text-xl); }
  .form-row--two { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__contact { grid-column: auto; }
  .section { padding: var(--space-12) var(--space-5); }
}

@media (max-width: 480px) {
  .hero__trust { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .trust-divider { display: none; }
  .hero__cta { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .catalyst-card { padding: var(--space-5); }
  .assess-card, .testimonial, .form-section { padding: var(--space-6); }
}
