/* ============================================
   NEW DAY COACHING — single-page design system
   Warm paper, ink blue, rust. Editorial, calm.
   ============================================ */

:root {
  /* Color — drawn from the artwork */
  --paper: #faf8f4;
  --cream: #f2eee6;
  --mist: #e7eaec;
  --ink: #232f38;
  --ink-soft: #43525e;
  --slate: #6e8090;
  --line: #dcd6ca;
  --rust: #b95c33;
  --rust-deep: #9d4a26;
  --gold: #d9a83f;
  --white: #ffffff;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 5.5rem;

  --radius: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-md: 0 10px 30px rgba(35, 47, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(35, 47, 56, 0.12);

  --nav-h: 72px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rust);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: var(--space-2);
}

.eyebrow-light { color: var(--gold); }

a { color: var(--rust-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Layout --- */
.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.container-narrow { width: min(760px, 100% - 3rem); }

.section { padding: var(--space-6) 0; }
.section-tint { background: var(--cream); }

.section-head { max-width: 620px; margin-bottom: var(--space-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--space-2); }
.section-lead { font-size: 1.1875rem; line-height: 1.6; }

/* --- Navigation --- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), background 300ms var(--ease);
}

.nav.scrolled { border-bottom-color: var(--line); background: rgba(250, 248, 244, 0.94); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; }

.logo-mark { display: block; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.8vw, 2.5rem);
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
  transition: color 200ms, border-color 200ms;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 600;
  padding: 0.65rem 1.5rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background 200ms !important;
}
.nav-cta:hover { background: var(--rust-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 250ms var(--ease), opacity 250ms;
}
.nav-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 200ms var(--ease), box-shadow 200ms;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(185, 92, 51, 0.3);
}
.btn-primary:hover { background: var(--rust-deep); box-shadow: 0 10px 24px rgba(185, 92, 51, 0.35); }

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-wide { width: 100%; justify-content: center; }

.btn-arrow { font-size: 1.05em; line-height: 1; transition: transform 200ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* --- Hero --- */
.hero {
  padding: calc(var(--nav-h) + var(--space-6)) 0 var(--space-6);
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(217, 168, 63, 0.14), transparent 65%),
    radial-gradient(700px 420px at -8% 30%, rgba(110, 128, 144, 0.10), transparent 60%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.hero h1 { margin: var(--space-2) 0 var(--space-3); }

.hero-lead {
  font-size: 1.1875rem;
  max-width: 34em;
  margin-bottom: var(--space-4);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  list-style: none;
  margin-top: var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
}

.hero-facts li { display: flex; align-items: center; }

.hero-facts li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 0.9rem;
}

/* --- Framed artwork --- */
.frame {
  background: var(--white);
  padding: 14px 14px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.frame img { border-radius: 3px; }

.frame-tilt { transform: rotate(1.6deg); }
.frame-tilt-left { transform: rotate(-1.6deg); }

.hero-art { position: relative; }

.hero-art::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  z-index: -1;
}

.frame-caption {
  margin-top: var(--space-3);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--slate);
}

/* --- Split (therapist vs coach) --- */
.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-4);
  align-items: stretch;
  margin-bottom: var(--space-5);
}

.split-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.split-accent {
  background: var(--ink);
  border-color: var(--ink);
  color: rgba(250, 248, 244, 0.82);
}
.split-accent h3 { color: var(--paper); }
.split-accent .split-tag { color: var(--gold); }

.split-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0.35rem 0 var(--space-3);
}

.split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-divider span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(217, 168, 63, 0.4);
}

/* --- Lists --- */
.list { list-style: none; }

.list li {
  padding: 0.45rem 0;
  line-height: 1.5;
}

.list-plain li { padding-left: 1.3rem; position: relative; }
.list-plain li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.list-check li, .list-cross li { padding-left: 1.8rem; position: relative; }

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--rust);
  border-bottom: 2px solid var(--rust);
  transform: rotate(-45deg);
}

.list-cross li::before {
  content: "\00d7";
  position: absolute;
  left: 0.15rem;
  top: 0.32rem;
  color: var(--slate);
  font-size: 1.15rem;
  line-height: 1;
}

/* --- Services (What I do) --- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.service-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0.35rem 0 var(--space-3);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
}

.chip-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
}

.about-chips {
  justify-content: flex-start;
  margin-bottom: var(--space-4);
}

/* --- Collaboration note --- */
.collab-note {
  max-width: 760px;
  margin: 0 auto var(--space-5);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* --- Who I help --- */
.who { border-top: 1px solid var(--line); padding-top: var(--space-4); }

.who-head { margin-bottom: var(--space-1); color: var(--ink); }
.who-intro { font-size: 1.0625rem; color: var(--ink-soft); margin-bottom: var(--space-2); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-4);
}
.who-grid li:last-child { grid-column: 1 / -1; }

/* --- Approach --- */
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: center;
}

.pillars { list-style: none; display: grid; gap: var(--space-4); }

.pillars li { display: flex; gap: var(--space-3); align-items: baseline; }

.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rust);
  min-width: 2.6rem;
}

.pillars h3 { margin-bottom: 0.35rem; }

/* --- Pricing --- */
.pricing-card {
  max-width: 520px;
  margin: 0 auto var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--rust);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
}

.pricing-head { text-align: center; padding-bottom: var(--space-3); border-bottom: 1px solid var(--line); }

.price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 0.4rem;
}

.price span { font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; color: var(--slate); }

.price-ask { font-size: 2rem; font-style: italic; }

.pricing-list { padding: var(--space-3) 0; }

.pricing-note {
  margin-top: var(--space-2);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate);
}

/* --- Fit --- */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  max-width: 820px;
  margin: var(--space-5) auto 0;
}

.fit-col {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.fit-yes { background: var(--white); border: 1px solid var(--line); }
.fit-no { background: var(--mist); }

.fit-col h4 { margin-bottom: var(--space-2); color: var(--ink); }

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-5);
  align-items: center;
}

.about-art { max-width: 400px; }

.about-text h2 { margin: var(--space-1) 0 var(--space-3); }
.about-text p { margin-bottom: var(--space-3); }

/* --- FAQ --- */
.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
  transition: color 200ms;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--rust);
  transition: transform 250ms var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--rust-deep); }

.faq-item p { padding: 0 2.5rem 1.25rem 0; max-width: 60ch; }

/* --- Contact --- */
.section-contact {
  background:
    radial-gradient(800px 500px at 105% 0%, rgba(217, 168, 63, 0.12), transparent 60%),
    var(--ink);
  color: rgba(250, 248, 244, 0.8);
}

.section-contact h2 { color: var(--paper); }
.section-contact h2 em { color: var(--gold); }

.contact-body { text-align: center; }

.contact-body h2 { margin: var(--space-1) 0 var(--space-3); }

.contact-lead {
  max-width: 46em;
  margin: 0 auto var(--space-4);
}

.contact-note {
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: rgba(250, 248, 244, 0.6);
}

.contact-note a { color: var(--gold); }

.contact-note + .contact-note { margin-top: var(--space-1); }

/* --- Footer --- */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  padding: var(--space-4) 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.footer .nav-logo { color: var(--paper); }
.footer p { font-size: 0.8125rem; color: rgba(250, 248, 244, 0.55); }

/* --- What to expect --- */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-4) var(--space-3);
  box-shadow: var(--shadow-md);
}
.expect-grid li { font-size: 1.02rem; }
.expect-col h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }

/* --- How it works --- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  position: relative;
}

.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(185, 92, 51, 0.28);
  margin-bottom: var(--space-3);
}

.step h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }

/* --- Approach values --- */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.values li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rust-deep);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
}

/* --- Goal line --- */
.goal-line {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--ink);
}

/* --- Testimonial --- */
.quote { text-align: center; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote blockquote p + p { margin-top: var(--space-3); }
.quote + .quote { margin-top: var(--space-6); }
.quote figcaption {
  margin-top: var(--space-3);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--rust);
}

/* Empty holder awaiting a future testimonial */
.quote-placeholder {
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-5);
  border: 2px dashed var(--line, rgba(0, 0, 0, 0.15));
  border-radius: var(--radius, 16px);
  opacity: 0.55;
}

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero-grid, .approach-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .hero-art { max-width: 440px; }
  .about-art { margin-inline: auto; }
  .approach-art { max-width: 440px; }

  .split { grid-template-columns: 1fr; gap: var(--space-2); }
  .split-divider { padding: 0.25rem 0; }

  .services { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr 1fr; }
  .expect-grid { grid-template-columns: 1fr; gap: 0; }
  .expect-col + .expect-col { margin-top: var(--space-3); }
}

@media (max-width: 920px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: var(--space-2) var(--space-3) var(--space-3);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms var(--ease), transform 250ms var(--ease);
  }

  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; font-size: 1rem; }
  .nav-cta { display: inline-block; margin-top: 0.6rem; text-align: center; }
}

@media (max-width: 720px) {
  .section { padding: var(--space-5) 0; }

  .who-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }

  .fit { grid-template-columns: 1fr; }
}

/* --- Brand lines --- */
.formula {
  margin-top: var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--rust-deep);
}
.about-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--rust-deep);
  margin: var(--space-3) 0;
}
.footer .footer-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(250, 248, 244, 0.85);
}

/* --- Client portal (placeholder login) --- */
.portal-wrap {
  min-height: calc(100vh - var(--nav-h) - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-3);
  background: var(--cream);
}
.portal-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}
.portal-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust-deep);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: var(--space-3);
}
.portal-card h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.portal-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--space-4);
}
.portal-field { text-align: left; margin-bottom: var(--space-3); }
.portal-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.portal-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.portal-field input:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(185, 92, 51, 0.12);
}
.portal-card .btn { width: 100%; justify-content: center; margin-top: var(--space-1); }
.portal-note {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  background: var(--mist);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  display: none;
}
.portal-note.show { display: block; }
.portal-forgot {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: 0.85rem;
  color: var(--slate);
}
.portal-forgot:hover { color: var(--rust); }
