/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* color */
  --ink:        #20231f;
  --green-deep: #1f2e28;
  --green-mid:  #34493e;
  --ivory:      #f6f0e4;
  --ivory-soft: #efe6d4;
  --terracotta: #c1693d;
  --terracotta-deep: #9f4f29;
  --brass:      #ad8a55;
  --clay-line:  #ddc8ab;
  --white: #fffaf2;

  /* type */
  --font-display: "Poppins", "Optima", "Futura", sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --max-w: 1240px;
  --pad: clamp(24px, 6vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ============================================================
   EYEBROW / DATELINE — signature element
   Styled like a wire-service dateline, nodding to her
   journalism & press-briefing background.
   ============================================================ */
.dateline {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.dateline::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.dateline.on-dark { color: #cdb98a; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(246, 240, 228, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px var(--pad);
  box-shadow: 0 1px 0 rgba(32,35,31,0.08);
}
.nav__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.35s ease;
}
.nav.is-scrolled .nav__name { color: var(--ink); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.92;
  transition: color 0.35s ease, opacity 0.2s ease;
}
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { opacity: 1; color: var(--terracotta); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--solid {
  background: var(--terracotta);
  color: var(--white);
}
.btn--solid:hover { background: var(--terracotta-deep); transform: translateY(-1px); }
.btn--ghost-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--ghost-dark {
  border-color: rgba(32,35,31,0.3);
  color: var(--ink);
}
.btn--ghost-dark:hover { border-color: var(--ink); }

.nav__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: background 0.35s ease;
}
.nav.is-scrolled .nav__menu-toggle span { background: var(--ink); }

/* mobile nav */
.nav__mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__mobile-panel.open { display: flex; }
.nav__mobile-panel a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
}
.nav__mobile-close {
  position: absolute;
  top: 22px; right: var(--pad);
  background: none; border: none; color: var(--white);
  font-size: 28px; cursor: pointer;
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  #nav-cta-desktop { display: none !important; }
  .nav__menu-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 4%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,24,18,0.82) 0%,
    rgba(20,24,18,0.62) 32%,
    rgba(20,24,18,0.22) 54%,
    rgba(20,24,18,0.04) 70%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px var(--pad) 110px;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.22;
  color: var(--white);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.hero__subhead {
  font-size: clamp(16.5px, 1.8vw, 18.5px);
  color: #f1ece1;
  max-width: 460px;
  margin: 0 0 42px;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 700px), (orientation: landscape) and (max-height: 500px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero__img {
    position: relative;
    height: 52vh;
    min-height: 340px;
  }
  .hero__scrim { display: none; }
  .hero__content {
    padding: 40px var(--pad) 56px;
    max-width: none;
  }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.section-pad { padding: 110px 0; }
@media (max-width: 700px) { .section-pad { padding: 80px 0; } }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.section-head p {
  font-size: 17px;
  color: #4b4d44;
  max-width: 520px;
  margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--ivory); }
.about__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 0 0 56px;
  color: var(--ink);
  max-width: 600px;
}
.about__wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.about__img {
  width: 100%;
  aspect-ratio: 380/724.5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}
.about__copy { max-width: 620px; padding-bottom: 36px; }
.about__copy p:last-child { margin-bottom: 0; }
.about__copy p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: #353730;
  margin: 0 0 24px;
  text-align: justify;
}
.about__pull {
  font-family: var(--font-display) !important;
  font-size: 24px !important;
  line-height: 1.5 !important;
  color: var(--terracotta-deep) !important;
  font-weight: 500 !important;
  text-align: center !important;
  max-width: 480px !important;
  margin: 16px auto 36px !important;
}

@media (max-width: 800px) {
  .about__wrap { grid-template-columns: 1fr; gap: 32px; }
  .about__img { max-width: 320px; }
}


/* ============================================================
   METHOD
   ============================================================ */
.method { background: var(--green-deep); color: var(--ivory); }
.method .wrap { max-width: 1440px; }

.equation-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin: 0 0 64px;
}
.method__step {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  container-type: inline-size;
}
.method__step-header {
  min-height: clamp(58px, 36cqi, 84px);
  flex: 0 0 auto;
}
.method__step-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 8px;
}
.method__step h3 {
  font-family: var(--font-display);
  font-size: clamp(14px, 8cqi, 19px);
  font-weight: 500;
  margin: 0;
  color: var(--white);
  line-height: 1.28;
}
.method__step-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  min-height: 0;
  padding-top: 14px;
}
.method__step p {
  font-size: clamp(10px, 6cqi, 15px);
  color: #c9cbc0;
  margin: 0;
  line-height: 1.4;
}
.method__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--brass);
  padding: 0 14px;
}
.method__result {
  background: var(--terracotta);
  border-radius: 4px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1 / 1;
}
.method__result h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 1150px) {
  .equation-row { grid-template-columns: 1fr; }
  .method__step, .method__result { aspect-ratio: auto; }
  .method__symbol.plus { padding: 10px 0; transform: rotate(90deg); }
  .method__symbol.equals { padding: 14px 0; }
  .method__step { padding: 26px 24px; }
  .method__result { padding: 32px 24px; }
}

.how-we-work { background: var(--terracotta); }

.method__how {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.method__how h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 16px;
}
.method__how-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 32px;
  text-align: left;
}
.method__how-card {
  background: var(--green-deep);
  border-radius: 6px;
  padding: 22px 20px;
}
.method__how-card-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin: 0 0 10px;
}
.method__how-card-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ivory);
  line-height: 1.5;
  margin: 0;
}
.method__how-closing {
  font-size: 16px;
  color: var(--white);
  margin: 0 0 32px;
  line-height: 1.6;
}
.how-we-work .btn--solid {
  background: var(--green-deep);
  color: var(--white);
}
.how-we-work .btn--solid:hover { background: var(--ink); }

@media (max-width: 700px) {
  .method__how-formats { grid-template-columns: 1fr; }
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience { background: var(--ivory); }
.audience h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 0 0 56px;
  color: var(--ink);
  max-width: 600px;
}
.audience__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
}
.audience__col-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brass);
}
.audience__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--clay-line);
  font-size: 17px;
  line-height: 1.4;
}
.audience__col--coaching {
  padding-top: 32px;
}
.audience__col--coaching .audience__item:last-child { border-bottom: none; }

.audience__col--group {
  background: var(--green-mid);
  border-radius: 6px;
  padding: 32px;
  color: var(--white);
}
.audience__col--group .audience__col-label {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.3);
}
.audience__col--group .audience__item {
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: #e7e2d6;
}
.audience__col--group .audience__item:last-child { border-bottom: none; }

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

/* ============================================================
   CREDIBILITY
   ============================================================ */
.credibility { background: var(--terracotta); }
.credibility .dateline { color: var(--white); margin-bottom: 28px; }
.credibility .dateline::before { background: var(--white); }
.credibility .dateline { color: var(--white); }
.credibility .dateline::before { background: var(--white); }
.credibility h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 0 0 48px;
  color: var(--white);
  max-width: 600px;
}
.credibility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.credibility__card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 180px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  background: var(--green-deep);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.credibility__face {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 24px;
}
.credibility__art {
  width: 108px;
  height: 108px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.credibility__card:hover .credibility__art { transform: scale(1.05); }
.credibility__art--text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(255,255,255,0.06);
  padding: 8px;
  line-height: 1.3;
}
.credibility__face-outlet {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 10px;
}
.credibility__face-headline {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.35;
  color: var(--white);
}
.credibility__overlay {
  position: absolute;
  inset: 0;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.credibility__card:hover .credibility__overlay,
.credibility__card.is-active .credibility__overlay {
  opacity: 1;
  transform: translateY(0);
}
.credibility__tap-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--green-deep);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  font-style: italic;
  transition: opacity 0.2s ease;
}
.credibility__card.is-active .credibility__tap-hint { opacity: 0; }
@media (hover: none) {
  .credibility__tap-hint { display: flex; }
}
.credibility__overlay-outlet {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-deep);
  margin-bottom: 12px;
}
.credibility__overlay-text {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: 380px;
}

@media (max-width: 760px) {
  .credibility__grid { grid-template-columns: 1fr; }
  .credibility__overlay { padding: 22px; }
  .credibility__overlay-text { font-size: 15px; line-height: 1.35; }
  .credibility__card { min-height: 200px; }
}

.testimonials { background: var(--terracotta); color: var(--white); text-align: center; }
.testimonials .wrap { display: flex; flex-direction: column; align-items: center; }
.testimonials .section-head { display: flex; justify-content: center; }
.testimonials .section-head h2 { color: var(--white); }

.slider { max-width: 760px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.slider__track {
  position: relative;
  min-height: 220px;
  width: 100%;
}
.slide {
  display: none;
  animation: fadeIn 0.4s ease;
}
.slide.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide .text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 25px);
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 28px;
}
.slide .who { font-size: 13.5px; color: #fbe9da; }
.slide .who strong { color: var(--white); display: block; font-size: 14.5px; margin-bottom: 2px; }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider__arrow {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.slider__arrow:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.slider__dots {
  display: flex;
  gap: 10px;
}
.slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.slider__dot.is-active { background: var(--white); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ivory); }
.contact h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 0 0 40px;
  color: var(--ink);
  max-width: 600px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__grid--solo {
  grid-template-columns: 1fr;
  max-width: 480px;
}
.contact__booking {
  background: var(--white);
  border: 1px solid var(--clay-line);
  padding: 32px;
  border-radius: 3px;
}
.contact__booking-label {
  font-size: 13.5px;
  color: #6b6d61;
  margin: 0 0 10px;
}
.contact__booking-link {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--terracotta-deep);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}
.contact__booking-link:hover { color: var(--terracotta); }
.contact__booking-note {
  font-size: 12.5px;
  color: #9a9c8e;
  font-style: italic;
  margin: 0;
}

.form-note { font-size: 14.5px; color: #4b4d44; margin: 0 0 20px; }
.contact__confirmation {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: #4b4d44;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--clay-line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

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

/* ============================================================
   DIAGNOSTIC SECTION
   ============================================================ */
.diagnostic-section { background: var(--green-deep); }

/* ============================================================
   DIAGNOSTIC QUIZ
   ============================================================ */
.diagnostic { max-width: 560px; }
.diagnostic__step { display: none; }
.diagnostic__step.is-active { display: block; }
.diagnostic__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 14px;
}
.diagnostic__title em { color: var(--terracotta); font-style: italic; }
.diagnostic__lead {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ivory);
  line-height: 1.6;
  margin: 0 0 28px;
}
.diagnostic__dots { display: flex; gap: 6px; margin-bottom: 24px; }
.diagnostic__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.diagnostic__dot.is-done { background: var(--terracotta); }
.diagnostic__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin: 0 0 6px;
}
.diagnostic__sub { color: #cdb98a; font-size: 13px; margin: 0 0 18px; }
.diagnostic__opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 13px 16px;
  margin-bottom: 9px;
  border: 1px solid var(--clay-line);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
  box-sizing: border-box;
}
.diagnostic__opt:hover { border-color: var(--terracotta); }
.diagnostic__opt.is-selected {
  border-color: var(--terracotta);
  background: var(--ivory-soft);
  font-weight: 600;
}
.diagnostic__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--brass);
}
.diagnostic__check.box { border-radius: 4px; }
.diagnostic__check.circle { border-radius: 50%; }
.diagnostic__opt.is-selected .diagnostic__check {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.diagnostic__card {
  border: 1px solid var(--clay-line);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  background: var(--ivory-soft);
}
.diagnostic__card .diagnostic__q { color: var(--ink); }
.diagnostic__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.diagnostic__hint { color: #9a9c8e; font-size: 13px; margin: 0 0 12px; }
.diagnostic__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--clay-line);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  box-sizing: border-box;
  background: var(--white);
  color: var(--ink);
}
.diagnostic__input:focus { outline: none; border-color: var(--terracotta); }
.diagnostic__input.is-invalid { border-color: #c0392b; }
.diagnostic__error {
  color: #c0392b;
  font-size: 13px;
  margin: 8px 0 0;
}
.diagnostic__optional-tag {
  color: #9a9c8e;
  font-weight: 400;
}
textarea.diagnostic__input { resize: vertical; font-family: var(--font-body); }
.diagnostic__result-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory);
  margin: 0 0 28px;
}
.diagnostic .btn:disabled { background: rgba(255,255,255,0.16); cursor: not-allowed; }
.diagnostic__closing {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-deep);
  color: #aab2a4;
  padding: 36px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer a { color: #cdb98a; }
.footer a:hover { color: var(--white); }
