/* =========================================================
   Inclusive Mental Wellness LLC — Site Stylesheet
   Design tokens
   ========================================================= */

:root {
  /* Color — recalibrated to the practice's own brand art: saturated jewel
     tones on a rich near-black canvas, not a pastel wellness-template palette. */
  --ink: #1B1330;            /* deep plum-black — primary text & dark bg */
  --ink-deep: #0F0A1D;       /* richest bg, hero/footer/canvas */
  --cream: #F7F0E1;          /* warm paper — light bg, used with intention, not as default */
  --blush: #E7B36C;          /* warm amber-tan, replaces pastel pink for tags/callouts */
  --blush-ink: #6B4416;      /* text-on-blush */
  --sage: #157A52;           /* emerald — pulled straight from the logo's greens */
  --sage-light: #D8ECE1;
  --terracotta: #D6431F;     /* vivid red-orange — pulled from the logo */
  --terracotta-dark: #A82F12;
  --gold: #E3AE35;           /* saturated gold, not muted */
  --cream-ink: #F7F0E1;      /* text on dark bg */
  --muted: #6E6659;          /* muted text on light bg */
  --muted-cream: #C7BEDB;    /* muted text on dark bg */
  --line: #E2D3B4;           /* hairline on light */
  --line-dark: #362A54;      /* hairline on dark */

  /* Rainbow signature — saturated jewel-tone stops matching the brand art */
  --rainbow: linear-gradient(90deg, #E23A22 0%, #EA7C17 20%, #E8BE1F 40%, #17845A 60%, #1D4C8C 80%, #6E2FA0 100%);
  --rainbow-conic: conic-gradient(from 180deg, #E23A22, #EA7C17, #E8BE1F, #17845A, #1D4C8C, #6E2FA0, #E23A22);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 6px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.italic-accent { font-style: italic; color: var(--terracotta); font-weight: 500; }
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
  .wrap { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold); }

/* Signature rainbow divider */
.rainbow-bar {
  height: 4px;
  width: 64px;
  background: var(--rainbow);
  border-radius: 2px;
  margin: 0 0 22px;
}
.rainbow-bar.wide { width: 100%; height: 3px; margin: 0; }

h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
.lede {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 640px;
}
.on-dark .lede, .on-dark p { color: var(--muted-cream); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost.on-dark { color: var(--cream); }
.btn-ghost.on-dark:hover { background: var(--cream); color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   Utility bar + header
   ========================================================= */
.utility-bar {
  background: var(--ink-deep);
  color: var(--muted-cream);
  font-size: 0.82rem;
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}
.utility-bar .u-left { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.utility-bar .u-left span { display: inline-flex; align-items: center; gap: 6px; }
.utility-bar a { color: var(--cream); }
.utility-bar .u-right { display: flex; align-items: center; gap: 14px; }
.utility-bar .btn { padding: 7px 16px; font-size: 0.8rem; }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(116,132,95,0.25);
}

header.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  white-space: nowrap;
}
.brand .brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--rainbow-conic);
  padding: 2.5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand .brand-mark svg { background: var(--ink-deep); border-radius: 50%; padding: 7px; width: 100% !important; height: 100% !important; }
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.03em; }

nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav ul { display: flex; gap: 26px; align-items: center; }
nav.main-nav a.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a.nav-link.active { color: var(--terracotta); }
nav.main-nav a.nav-link:hover { color: var(--terracotta); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 980px) {
  nav.main-nav ul { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-toggle { display: block; }
  .nav-row { flex-wrap: wrap; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn { margin-top: 12px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 750px 550px at 88% -10%, rgba(214,67,31,0.38), transparent 60%),
    radial-gradient(ellipse 650px 550px at -8% 105%, rgba(23,132,90,0.30), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(110,47,160,0.14), transparent 65%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--cream); }
.hero .lede { color: var(--muted-cream); font-size: 1.15rem; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px;
}
.pill {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: var(--muted-cream);
  letter-spacing: 0.01em;
}
.hero-portrait {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--rainbow-conic);
  padding: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.hero-portrait-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--ink-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-cream);
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  padding: 30px;
  font-size: 0.95rem;
  overflow: hidden;
}
.hero-portrait-inner img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
/* Painterly ambient glow — used behind portrait/hero moments for a
   brushstroke-adjacent richness instead of a flat gradient */
.painterly-glow {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(226,58,34,0.35), transparent 45%),
    radial-gradient(circle at 75% 20%, rgba(232,190,31,0.28), transparent 45%),
    radial-gradient(circle at 60% 75%, rgba(23,132,90,0.30), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(110,47,160,0.30), transparent 45%);
  filter: blur(40px);
  pointer-events: none;
}

/* small page header (non-home) */
.page-hero {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 68px 0 64px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 14px; }
.page-hero .lede { color: var(--muted-cream); max-width: 720px; }

/* =========================================================
   Cards
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(32,26,50,0.08);
  border-color: transparent;
}
.card .card-top-bar {
  height: 3px; width: 40px; background: var(--rainbow); border-radius: 2px; margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 14px; font-size: 0.96rem; }
.card ul.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.card ul.tags li {
  font-size: 0.74rem;
  background: var(--blush);
  color: var(--blush-ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-dark {
  background: var(--ink);
  border: 1px solid var(--line-dark);
  color: var(--cream-ink);
}
.card-dark p { color: var(--muted-cream); }

/* =========================================================
   Sections: alternating backgrounds
   ========================================================= */
.section-cream { background: var(--cream); }
.section-blush { background: var(--blush); }
.section-ink {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line-dark);
}
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink .muted, .section-ink p:not(.lede) { color: var(--muted-cream); }
.section-ink .lede { color: var(--muted-cream); }

.section-head {
  max-width: 700px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .rainbow-bar { margin-left: auto; margin-right: auto; }

/* =========================================================
   Numbered / who-I-work-with list
   ========================================================= */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}
.who-card h3 { font-size: 1.15rem; }
.who-card p { color: var(--muted); font-size: 0.95rem; }
.on-dark .who-card p, .section-ink .who-card p { color: var(--muted-cream); }

/* =========================================================
   Fee tables
   ========================================================= */
.fee-block { margin-bottom: 56px; }
.fee-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.fee-note { color: var(--muted); font-size: 0.93rem; margin-bottom: 20px; max-width: 700px; }
.section-ink .fee-note { color: var(--muted-cream); }
table.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
table.fee-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
table.fee-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
table.fee-table tr:last-child td { border-bottom: none; }
table.fee-table td.rate { font-family: var(--font-display); font-weight: 600; color: var(--terracotta-dark); white-space: nowrap; }
table.fee-table td.inquire { font-weight: 600; color: var(--sage); white-space: nowrap; }
.section-ink .card p, .section-ink table.fee-table td, .section-ink .journal-card .date {
  color: var(--muted);
}
.section-ink table.fee-table td.rate { color: var(--terracotta-dark); }
.section-ink table.fee-table td.inquire { color: var(--sage); }
.section-ink .card h3 { color: var(--ink); }
.fee-callout {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 0.92rem;
  color: var(--ink);
  margin-top: 16px;
}
.fee-callout strong { color: var(--terracotta-dark); }

/* =========================================================
   Accordion (glossary / FAQ)
   ========================================================= */
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.accordion-item summary .plus::before, .accordion-item summary .plus::after {
  content: ""; position: absolute; background: var(--terracotta); border-radius: 2px;
}
.accordion-item summary .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.accordion-item summary .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); transition: transform 0.2s ease; }
.accordion-item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-item .accordion-body { padding: 0 4px 24px; color: var(--muted); max-width: 760px; }
.accordion-item .accordion-body p { margin-bottom: 0.8em; }
.section-ink .accordion-item .accordion-body { color: var(--muted-cream); }
.section-ink .accordion-item { border-bottom-color: var(--line-dark); }

/* =========================================================
   Testimonial / quote block
   ========================================================= */
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  max-width: 760px;
}

/* =========================================================
   Referral / trusted network cards
   ========================================================= */
.referral-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.referral-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 2px; }
.referral-card .role { font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
.referral-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 6px; }
.section-ink .referral-card .role, .section-ink .referral-card p { color: var(--muted-cream); }
.section-ink .referral-card { border-bottom-color: var(--line-dark); }
.referral-card a.site-link { font-weight: 700; font-size: 0.85rem; color: var(--terracotta); }

/* =========================================================
   Journal / blog preview
   ========================================================= */
.journal-card .tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sage); }
.journal-card .date { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; display: block; }

/* =========================================================
   Shop
   ========================================================= */
.shop-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
@media (max-width: 720px) { .shop-card { grid-template-columns: 1fr; } }
.shop-cover {
  background: var(--ink-deep);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.shop-cover-inner {
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  color: var(--cream);
}
.shop-cover-inner .rainbow-bar { margin: 0 auto 14px; }
.shop-cover-inner .title { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.25; }
.shop-cover-inner .sub { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-cream); margin-top: 8px; }
.shop-body { padding: 28px 30px 28px 0; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 720px) { .shop-body { padding: 0 24px 26px; } }
.shop-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--terracotta-dark); margin: 10px 0 16px; }
.shop-price .tbd { font-size: 0.85rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; }

/* =========================================================
   Contact / forms
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.info-row .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-cream); width: 110px; flex-shrink: 0; padding-top: 3px; }
.info-row .value { font-weight: 600; }
.info-row .value a:hover { color: var(--gold); }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--terracotta);
  outline: none;
}
.form-fineprint { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-fineprint strong { color: var(--ink); }
.section-ink .form-fineprint { color: var(--muted-cream); }
.section-ink .form-fineprint strong { color: var(--cream); }
.section-ink .field label { color: var(--muted-cream); }

/* =========================================================
   Footer
   ========================================================= */
footer.site-footer {
  background: var(--ink-deep);
  color: var(--muted-cream);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .socials { display: flex; gap: 16px; }

/* CTA band */
.cta-band {
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 10px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--cream); margin-bottom: 6px; }
.cta-band p { color: rgba(251,245,231,0.85); margin-bottom: 0; }
.cta-band .btn-primary { background: var(--ink); }
.cta-band .btn-primary:hover { background: var(--ink-deep); }

.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.max-720 { max-width: 720px; }
