/* I'm Home, Now What? — Post Hospital Discharge Concierge
   Palette drawn from Monica's business card: deep navy, warm orange, soft paper. */

:root {
  --navy: #1e3a6d;
  --navy-deep: #16294e;
  --orange: #d97e36;
  --orange-dark: #bf6524;
  --paper: #faf7f2;
  --paper-tint: #f1ece3;
  --ink: #27303f;
  --ink-soft: #5a6473;
  --line: #e3dccf;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(30, 58, 109, 0.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--navy); line-height: 1.15; }

a { color: var(--navy); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1.02rem; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy-deep); box-shadow: inset 0 0 0 2px var(--white); }
.btn-outline { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--orange); color: var(--orange-dark); }

/* SimplePractice widget triggers reuse the site buttons. The embed's own
   stylesheet is intentionally omitted; this outranks it if it ever returns. */
.btn.spwidget-button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
}
.btn-lg.spwidget-button { padding: 0.9rem 1.8rem; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); line-height: 1.15; }
.brand-text small { display: block; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark); font-weight: 800; }
.site-nav { display: flex; gap: 1.4rem; }
.site-nav a { text-decoration: none; font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); }
.site-nav a:hover { color: var(--navy); }
.header-cta { white-space: nowrap; }
.header-cta .cta-short { display: none; }

@media (max-width: 860px) {
  .site-nav { display: none; }
}
@media (max-width: 520px) {
  .site-header { gap: 0.75rem; }
  .brand { gap: 0.5rem; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 0.95rem; }
  .brand-text small { display: none; }
  .header-cta { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
}
@media (max-width: 380px) {
  .header-cta .cta-long { display: none; }
  .header-cta .cta-short { display: inline; }
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: #f0b07a; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 1.1rem;
}
.hero h1 em { font-style: italic; color: var(--orange); }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--ink-soft); max-width: 34em; margin-bottom: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.1rem; }
.hero-guardrail {
  border-left: 3px solid var(--orange);
  padding-left: 0.9rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  max-width: 42em;
}
.hero-guardrail strong { color: var(--navy); font-weight: 800; }
.hero-note { font-size: 0.82rem; color: var(--ink-soft); max-width: 30em; }

.hero-panel { display: grid; gap: 1rem; }
.panel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.panel-card ul { list-style: none; }
.panel-card li { padding: 0.32rem 0 0.32rem 1.5rem; position: relative; font-size: 0.95rem; }
.panel-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
}
.panel-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem;
}
.panel-card-accent { background: var(--navy); border-color: var(--navy); }
.panel-card-accent .panel-label { color: #f0b07a; }
.panel-card-accent .panel-body { color: #e8ecf5; font-size: 0.95rem; }

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

/* ---------- Trust bar ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  background: var(--paper-tint);
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.trust-title { font-weight: 800; color: var(--navy); font-size: 0.95rem; }
@media (max-width: 720px) {
  .trust-bar { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 4rem); max-width: 1200px; margin: 0 auto; }
.section-tint { max-width: none; background: var(--paper-tint); }
.section-tint > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.9rem; }
.section-lede { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.step-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-dark); margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.step p:last-child { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.package {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.package h3 { font-size: 1.3rem; }
.price { font-family: var(--font-display); font-size: 2.4rem; color: var(--orange-dark); margin: 0.4rem 0 1rem; }
.package ul { list-style: none; flex-grow: 1; margin-bottom: 1.4rem; }
.package li { padding: 0.34rem 0 0.34rem 1.5rem; position: relative; font-size: 0.92rem; color: var(--ink-soft); }
.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.package-featured {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow);
  position: relative;
}
.package-flag {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.fine-print { margin-top: 2rem; font-size: 0.8rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 940px) {
  .packages { grid-template-columns: 1fr; max-width: 480px; }
  .package-featured { order: -1; }
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 38em; }
.credentials { font-weight: 800; letter-spacing: 0.12em; color: var(--navy); font-size: 0.85rem; }
@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; }
}

/* ---------- Contact / hours ---------- */
.section-navy {
  max-width: none;
  background: var(--navy-deep);
  color: #dfe6f2;
}
.section-navy h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-lede { color: #b9c5da; margin-bottom: 1.6rem; max-width: 32em; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0.9rem; }
.contact-hint { font-size: 0.85rem; color: #b9c5da; margin-bottom: 1.8rem; max-width: 30em; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; flex-wrap: wrap; }
.contact-list span { flex: 0 0 7.5rem; font-weight: 800; color: #f0b07a; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 0.15rem; }
.contact-list a { color: var(--white); text-decoration: none; word-break: break-all; }
.contact-list a:hover { text-decoration: underline; }

.hours-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow);
}
.hours-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.hours-card table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-card td { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.hours-card td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.hours-card .closed td { color: var(--ink-soft); font-weight: 400; }
.hours-note { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.2rem clamp(1rem, 5vw, 4rem);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #8fa0bd;
  font-size: 0.8rem;
  text-align: center;
}
.site-footer p { max-width: 60em; margin: 0 auto 0.5rem; }
.site-footer strong { color: #dfe6f2; }
.site-footer .footer-credit { text-align: right; margin-bottom: 0; }
.site-footer .footer-credit a { color: #6f81a0; text-decoration: none; }
.site-footer .footer-credit a:hover { color: #dfe6f2; }
