/* Her Health Direct — shared styles (admin dashboard).
   Palette and type mirror the public site for a consistent brand. */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #fdf8fa;
  --blush: #f5d5e0;
  --rose: #e8a0b4;
  --deep-rose: #c9728a;
  --slate: #4a3d42;
  --slate-mid: #7a6570;
  --slate-lt: #c4aabb;
  --white: #ffffff;
  --line: rgba(180, 160, 150, 0.22);
  --ok: #3f9d76;
  --warn: #d9a23b;
  --font-disp: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

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

/* ── Brand ── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate);
}
.brand em {
  font-style: italic;
  color: var(--rose);
}
.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--rose);
  border-radius: 50% 50% 50% 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
}

/* ── Buttons ── */
.button {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  background: var(--rose);
  color: var(--white);
}
.button.primary:hover {
  background: var(--deep-rose);
}
.button.secondary {
  background: transparent;
  border-color: var(--rose);
  color: var(--deep-rose);
}
.button.secondary:hover {
  background: var(--rose);
  color: var(--white);
}
.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--slate-mid);
}
.button.ghost:hover {
  border-color: var(--slate-mid);
  color: var(--slate);
}

/* ── Layout shell ── */
.admin-page {
  min-height: 100vh;
}
.admin-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

/* ── Login card ── */
.admin-login {
  max-width: 440px;
  margin: 6vh auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(120, 80, 90, 0.1);
  animation: rise 0.6s ease both;
}
.admin-brand {
  margin-bottom: 26px;
}
.admin-login h1 {
  font-family: var(--font-disp);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}
.admin-login p {
  font-size: 0.9rem;
  color: var(--slate-mid);
  margin-bottom: 24px;
}
.admin-login label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 500;
  margin-bottom: 22px;
}
.admin-login input {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-login input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 160, 180, 0.18);
}
.admin-login .button {
  width: 100%;
}
.admin-login small {
  display: block;
  margin-top: 18px;
  font-size: 0.74rem;
  color: var(--slate-lt);
  letter-spacing: 0.03em;
}
.login-error {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fbe9ee;
  color: var(--deep-rose);
  font-size: 0.82rem;
  font-weight: 400;
}

/* ── Dashboard header ── */
.dashboard-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: rise 0.5s ease both;
}
.dashboard-header .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 8px;
}
.dashboard-header h1 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}
.dashboard-header > div:first-child p:last-child {
  font-size: 0.9rem;
  color: var(--slate-mid);
  max-width: 540px;
}
.dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Status summary ── */
.status-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
}
.summary-card .count {
  font-family: var(--font-disp);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--deep-rose);
  line-height: 1;
}
.summary-card .label {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

/* ── Table ── */
.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow-x: auto;
  box-shadow: 0 16px 44px rgba(120, 80, 90, 0.06);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1140px;
}
.admin-table thead th {
  text-align: left;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-mid);
  background: #faf2f5;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.admin-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(180, 160, 150, 0.14);
  font-size: 0.85rem;
  vertical-align: middle;
}
.admin-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-table tbody tr:hover {
  background: #fdf6f8;
}
.patient-name {
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}
.date-cell {
  color: var(--slate-mid);
  white-space: nowrap;
}

/* Inline status selects */
.status-select {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--slate);
  padding: 7px 26px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a6570' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 13px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.status-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 160, 180, 0.16);
}
.status-select.tone-ok {
  background-color: #eaf6f0;
  color: var(--ok);
  border-color: rgba(63, 157, 118, 0.3);
}
.status-select.tone-warn {
  background-color: #fbf3e3;
  color: #b07c1f;
  border-color: rgba(217, 162, 59, 0.32);
}
.status-select.tone-active {
  background-color: #fdeef3;
  color: var(--deep-rose);
  border-color: rgba(201, 114, 138, 0.3);
}

.notes-input {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate);
  width: 200px;
  min-width: 160px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.notes-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 160, 180, 0.16);
}

.row-saving {
  position: relative;
}
.save-flash {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  color: var(--ok);
  opacity: 0;
  transition: opacity 0.2s;
}
.save-flash.show {
  opacity: 1;
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--slate-mid);
  font-size: 0.9rem;
}

/* ── View toggle (flow board vs detailed table) ── */
.view-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 24px;
  background: #faf2f5;
  border: 1px solid var(--line);
  border-radius: 30px;
}
.view-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-mid);
  padding: 9px 20px;
  border: none;
  border-radius: 26px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.view-tab:hover {
  color: var(--slate);
}
.view-tab.is-active {
  background: var(--white);
  color: var(--deep-rose);
  box-shadow: 0 2px 8px rgba(120, 80, 90, 0.1);
}

/* ── Flow: funnel summary ── */
.flow-funnel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 24px;
  box-shadow: 0 16px 44px rgba(120, 80, 90, 0.06);
}
.funnel-track {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.funnel-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.funnel-count {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-rose);
  line-height: 1;
}
.funnel-bar-track {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: flex-end;
  background: #faf2f5;
  border-radius: 8px;
  overflow: hidden;
}
.funnel-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--rose), var(--deep-rose));
  border-radius: 8px 8px 0 0;
  transition: height 0.4s ease;
}
.funnel-label {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-align: center;
  line-height: 1.2;
}
.funnel-arrow {
  align-self: center;
  color: var(--slate-lt);
  font-size: 1.1rem;
  padding-bottom: 26px;
}
.funnel-exceptions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.funnel-chip {
  font-size: 0.74rem;
  font-weight: 500;
  color: #b07c1f;
  background: #fbf3e3;
  border: 1px solid rgba(217, 162, 59, 0.32);
  border-radius: 30px;
  padding: 5px 14px;
}

/* ── Flow: pipeline board ── */
.flow-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.flow-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 120px;
}
.flow-col.is-exception {
  background: #fdfaf4;
  border-color: rgba(217, 162, 59, 0.32);
}
.flow-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-mid);
}
.flow-col-count {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--deep-rose);
  background: #faf2f5;
  border-radius: 20px;
  min-width: 28px;
  text-align: center;
  padding: 2px 8px;
}
.flow-col-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}
.flow-col-empty {
  font-size: 0.78rem;
  color: var(--slate-lt);
  text-align: center;
  padding: 14px 6px;
}
.flow-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow-card-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate);
}
.flow-card-meta {
  font-size: 0.74rem;
  color: var(--slate-mid);
}
.flow-move {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--slate);
  padding: 6px 24px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a6570' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.flow-move:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 160, 180, 0.16);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .admin-shell {
    padding: 28px 18px 64px;
  }
  .admin-login {
    padding: 36px 26px;
  }
  .dashboard-actions {
    width: 100%;
  }
  .funnel-track {
    overflow-x: auto;
  }
  .funnel-step {
    flex: 0 0 64px;
  }
  .funnel-label {
    font-size: 0.6rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   PUBLIC SITE — landing page + intake
   Shares the brand tokens, .brand and .button styles defined above.
   ════════════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden {
  display: none;
}

/* Shared eyebrow label */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-rose);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rose);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(253, 248, 250, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(120, 80, 90, 0.06);
}
.site-header .brand {
  text-decoration: none;
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.site-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--slate-mid);
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: var(--deep-rose);
}
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 40px;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--deep-rose);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1.5px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px);
}
.hero-copy {
  animation: rise 0.8s ease 0.05s both;
}
.hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--slate);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.02rem;
  color: var(--slate-mid);
  line-height: 1.8;
  max-width: 30em;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .button {
  padding: 15px 30px;
}
.price-note {
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--slate-mid);
}
.price-note strong {
  color: var(--deep-rose);
  font-weight: 600;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-row span {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  color: var(--slate-mid);
  line-height: 1.5;
}
.trust-row strong {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-rose);
  margin-bottom: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(150deg, #f9d8e6 0%, #f0b6cf 45%, #e8a0b4 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(160, 90, 110, 0.22);
  animation: fade 1s ease 0.2s both;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.45), transparent 38%),
    url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='17' fill='none' stroke='%23ffffff' stroke-opacity='0.12'/%3E%3C/svg%3E");
}
.clinical-card {
  position: relative;
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(80, 40, 50, 0.18);
  backdrop-filter: blur(8px);
  animation: floatup 1.2s ease 0.5s both;
}
.clinical-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff0f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clinical-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--deep-rose);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.clinical-card h2 {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
  line-height: 1.25;
}
.clinical-card p {
  font-size: 0.84rem;
  color: var(--slate-mid);
  line-height: 1.6;
}

/* ── Generic section rhythm ── */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 56px);
}
.section h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  font-weight: 400;
  line-height: 1.16;
  color: var(--slate);
}
.section h2 em {
  font-style: italic;
  color: var(--deep-rose);
}

/* Intro */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}
.intro p:last-child {
  font-size: 1rem;
  color: var(--slate-mid);
  line-height: 1.85;
}

/* Process */
.process {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin-bottom: 16px;
}
.section-heading p:last-child {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.8;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.step-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 24px 26px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(180, 120, 130, 0.12);
}
.step-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.step-card h3 {
  font-family: var(--font-disp);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--slate);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.86rem;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* Care band */
.care-band {
  background: var(--slate);
  color: var(--white);
}
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.care-band .eyebrow {
  color: var(--blush);
}
.care-band .eyebrow::before {
  background: var(--blush);
}
.care-grid > div:first-child h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.care-grid > div:first-child > p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.85;
  margin-bottom: 28px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pills span {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}
.care-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.care-cards article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
}
.care-cards h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.care-cards p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* Oversight */
.oversight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.oversight h2 {
  margin-bottom: 16px;
}
.oversight > div p {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.85;
}
.oversight aside {
  background: #fbeef3;
  border: 1px solid rgba(201, 114, 138, 0.22);
  border-radius: 18px;
  padding: 28px 26px;
}
.oversight aside strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-rose);
  margin-bottom: 12px;
}
.oversight aside p {
  font-size: 0.88rem;
  color: var(--slate-mid);
  line-height: 1.75;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.pricing h2 {
  margin-bottom: 16px;
}
.pricing > div p {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.85;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(120, 80, 90, 0.08);
}
.price-card > span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 600;
}
.price-card > strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--deep-rose);
  margin: 10px 0 18px;
}
.price-card > p {
  font-size: 0.84rem;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.price-card .button {
  width: 100%;
}

/* FAQ */
.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.faq-grid article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;
}
.faq-grid h3 {
  font-family: var(--font-disp);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
}
.faq-grid p {
  font-size: 0.88rem;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* Consultation form (on landing + reused tokens for intake) */
.consultation {
  background: linear-gradient(165deg, var(--cream) 0%, #fae8f0 100%);
}
.consultation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.consultation-grid h2 {
  margin-bottom: 16px;
}
.consultation-grid > div:first-child p {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.85;
}
.consultation-grid form,
.intake-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 24px 60px rgba(120, 80, 90, 0.08);
}
.consultation-grid label,
.intake-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 600;
  margin-bottom: 18px;
}
.consultation-grid input,
.consultation-grid textarea,
.intake-form input,
.intake-form textarea,
.intake-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--slate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.consultation-grid textarea,
.intake-form textarea {
  resize: vertical;
  line-height: 1.6;
}
.consultation-grid input:focus,
.consultation-grid textarea:focus,
.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 160, 180, 0.18);
}
.consultation-grid button[type="submit"],
.intake-form button[type="submit"] {
  width: 100%;
  margin-top: 4px;
}

/* ── Intake page ── */
.intake-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 56px);
}
.intake-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.intake-aside h1 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--slate);
  margin-bottom: 18px;
}
.intake-aside > p {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 26px;
}
.intake-reassure {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.intake-reassure li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}
.intake-reassure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--rose)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-11'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}
.intake-emergency {
  background: #fbeef3;
  border: 1px solid rgba(201, 114, 138, 0.22);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 0.84rem;
  color: var(--slate-mid);
  line-height: 1.65;
}
.intake-emergency strong {
  color: var(--deep-rose);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.consent {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  color: var(--slate-mid) !important;
}
.consent input {
  width: auto !important;
  margin: 3px 0 0 !important;
  flex-shrink: 0;
  accent-color: var(--deep-rose);
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #c0395a;
}
label.invalid .field-error {
  display: block;
}
label.invalid input,
label.invalid textarea {
  border-color: #d98aa0;
  box-shadow: 0 0 0 3px rgba(201, 114, 138, 0.14);
}
.form-status {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fbe9ee;
  color: #b03a59;
  font-size: 0.85rem;
  line-height: 1.5;
}
.intake-success {
  text-align: center;
  padding: 8px 4px 4px;
}
.intake-success .success-mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eaf6f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intake-success .success-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--ok);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.intake-success h2 {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 12px;
}
.intake-success p {
  font-size: 0.92rem;
  color: var(--slate-mid);
  line-height: 1.75;
  max-width: 36em;
  margin: 0 auto 22px;
}

/* ── Footer ── */
.site-footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(40px, 6vw, 56px) clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 48px;
  align-items: center;
  max-width: 100%;
}
.footer-brand {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand em {
  font-style: italic;
  color: var(--blush);
}
.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer nav a {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.site-footer nav a:hover {
  color: var(--blush);
}
.site-footer > p {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 80ch;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Animations ── */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatup {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-copy,
  .hero-visual,
  .clinical-card {
    animation: none;
  }
}

/* ── Responsive (public site) ── */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px clamp(20px, 5vw, 56px) 24px;
    background: rgba(253, 248, 250, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(120, 80, 90, 0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .site-header.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 12px 4px;
    font-size: 0.84rem;
  }
  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  .hero,
  .intro,
  .care-grid,
  .oversight,
  .pricing,
  .consultation-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 320px;
    order: -1;
  }
  .care-cards,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .trust-row,
  .care-cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   CONFIDENTIAL INTAKE + PAYMENT (body.intake-page)
   A multi-panel clinical form on the brand's rose-and-cream
   palette. Scoped under .intake-page so it overrides the
   shared .intake-form card styles defined above.
   ============================================================ */
.intake-page {
  background: var(--cream);
}
.intake-header .back-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--slate-mid);
  font-weight: 600;
  transition: color 0.2s;
}
.intake-header .back-link:hover {
  color: var(--deep-rose);
}
.intake-page main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 80px);
}

/* Hero band */
.intake-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.intake-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--slate);
  margin: 10px 0 16px;
}
.intake-hero > div > p {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.8;
}
.intake-note {
  background: #fbeef3;
  border: 1px solid rgba(201, 114, 138, 0.22);
  border-radius: 18px;
  padding: 22px 24px;
}
.intake-note strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.15rem;
  color: var(--deep-rose);
  margin-bottom: 8px;
}
.intake-note p {
  font-size: 0.86rem;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* Make the form a transparent wrapper; each panel is its own card. */
.intake-page .intake-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 18px 50px rgba(120, 80, 90, 0.07);
}

/* Numbered panel header */
.panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.panel-heading > span {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-heading h2 {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.1;
  margin-bottom: 4px;
}
.panel-heading > div > p {
  font-size: 0.86rem;
  color: var(--slate-mid);
  line-height: 1.55;
}

/* Field labels inside panels */
.intake-page .intake-form .form-panel > label,
.intake-page .intake-form .field-grid > label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 600;
  margin: 0 0 18px;
}
.intake-page .intake-form .form-panel > label:last-child {
  margin-bottom: 0;
}
.intake-page .intake-form .optional {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--slate-lt);
  font-size: 0.7rem;
}

/* Field grids */
.field-grid {
  display: grid;
  gap: 0 20px;
}
.field-grid.two {
  grid-template-columns: 1fr 1fr;
}
.field-grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.intake-page .intake-form input[readonly] {
  background: #f4eef1;
  color: var(--slate-mid);
  cursor: default;
}

/* Radio groups */
.intake-page fieldset {
  border: none;
  padding: 0;
  margin: 0 0 22px;
}
.intake-page fieldset:last-of-type {
  margin-bottom: 0;
}
.intake-page legend {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 0;
}
.intake-page .choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 10px 0;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--slate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 40px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.intake-page .choice:hover {
  border-color: var(--rose);
}
.intake-page .choice input {
  width: auto;
  margin: 0;
  accent-color: var(--deep-rose);
}
.intake-page .choice:has(input:checked) {
  border-color: var(--rose);
  background: #fbeef3;
  color: var(--deep-rose);
}

/* Consent checkboxes */
.intake-page .check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--slate-mid);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.intake-page .check:last-of-type {
  margin-bottom: 0;
}
.intake-page .check input {
  width: auto;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--deep-rose);
}

/* Submit + feedback */
.intake-submit {
  width: 100%;
  margin-top: 24px;
}
.form-feedback {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fbe9ee;
  color: #b03a59;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── Payment page ── */
.payment-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}
.payment-summary .panel-heading > span {
  background: var(--deep-rose);
}
.summary-lines {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.summary-lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--slate);
}
.summary-lines li strong {
  font-weight: 600;
  white-space: nowrap;
}
.summary-lines li.muted {
  color: var(--slate-mid);
}
.summary-lines li.muted strong {
  color: var(--slate-mid);
  font-weight: 500;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.summary-total span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 600;
}
.summary-total strong {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--deep-rose);
}
.summary-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--slate-mid);
  line-height: 1.65;
}
.payment-disclaimer {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--slate-lt);
  line-height: 1.6;
}

/* ── Secure payment (body.payment-page) — hosted checkout handoff ── */
.payment-page {
  background: var(--cream);
}
.payment-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.payment-copy h1 {
  font-family: var(--font-disp);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--slate);
  margin: 10px 0 16px;
}
.payment-copy p {
  font-size: 0.98rem;
  color: var(--slate-mid);
  line-height: 1.8;
}
.checkout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 18px 50px rgba(120, 80, 90, 0.07);
}
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.checkout-header span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  font-weight: 600;
}
.checkout-header strong {
  font-family: var(--font-disp);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--deep-rose);
}
.checkout-lines {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 20px 0 26px;
}
.checkout-lines > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--slate);
}
.checkout-lines > div strong {
  font-weight: 600;
  color: var(--ok);
  white-space: nowrap;
}
.payment-button {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}
.payment-button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.payment-status {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--deep-rose);
  line-height: 1.65;
}
.merchant-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--slate-lt);
  line-height: 1.6;
}
.merchant-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.72rem;
  color: var(--deep-rose);
}

/* ── Telemedicine review helpers (reuses .intake-page layout) ── */
.prepare-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.prepare-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--slate-mid);
  line-height: 1.7;
}
.prepare-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}
.telemed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ── Responsive (intake + payment) ── */
@media (max-width: 760px) {
  .intake-hero,
  .payment-grid,
  .payment-wrap {
    grid-template-columns: 1fr;
  }
  .field-grid.two,
  .field-grid.three {
    grid-template-columns: 1fr;
  }
  .telemed-actions .button {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* ── Patient-journey continuity (public flow) ── */
.journey-status {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: var(--blush);
  color: var(--deep-rose);
  font-weight: 500;
  font-size: 0.95rem;
}

.journey-progress {
  margin: 2rem auto;
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(201, 114, 138, 0.08);
}

.journey-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0;
  color: var(--slate-mid);
  font-size: 0.98rem;
}

.journey-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--slate-lt);
  background: var(--white);
}

.journey-step.done .journey-dot {
  background: var(--ok);
  border-color: var(--ok);
}

.journey-step.done .journey-label {
  color: var(--slate);
}

.journey-step.current .journey-dot {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
  box-shadow: 0 0 0 4px var(--blush);
}

.journey-step.current .journey-label {
  color: var(--deep-rose);
  font-weight: 600;
}

