/* LUMINARY PSYCHIATRY AND WELLNESS - SHARED STYLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #FAF6F1;
  color: #3D2B3F;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --ink:      #3D2B3F;
  --plum:     #4A3B52;
  --terra:    #C17A56;
  --terra-dk: #A5613F;
  --terra-lt: #F3E3D8;
  --sage:     #8FA888;
  --sage-dk:  #6D8767;
  --sage-lt:  #E6EDE4;
  --cream:    #FAF6F1;
  --cream-alt:#F1E9DD;
  --white:    #FFFFFF;
  --border:   #E3D9C8;
  --text:     #3D2B3F;
  --muted:    #6B5F58;
  --muted-lt: #8A8078;
  --gold:     #E8B84B;
}

h1, h2, h3, h4 { font-family: 'Newsreader', serif; color: var(--ink); font-weight: 500; line-height: 1.2; }
.eyebrow { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-dk); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* buttons: asymmetric soft-corner shape, not a pill, distinct from prior builds */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 26px 6px 26px 6px; font-weight: 600; font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 8px 20px rgba(193,122,86,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(193,122,86,.36); background: var(--terra-dk); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: rgba(61,43,63,.06); }
.btn-sage { background: var(--sage); color: #fff; box-shadow: 0 8px 20px rgba(143,168,136,.28); }
.btn-sage:hover { background: var(--sage-dk); }

/* TOPBAR */
.topbar {
  background: var(--plum); color: #EFE6E8; font-size: .82rem;
  padding: 8px 0; text-align: center; letter-spacing: .02em;
}

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 78px; background: #FFFFFF;
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 500;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 50%; border: 1.6px solid var(--terra);
  display: flex; align-items: center; justify-content: center; font-family: 'Newsreader', serif;
  font-size: 1.1rem; color: var(--terra); flex-shrink: 0;
}
.logo-name { font-family: 'Newsreader', serif; font-size: 1.15rem; font-weight: 500; color: var(--ink); line-height: 1.15; }
.logo-sub { font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-lt); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: .92rem; color: var(--text); position: relative; }
.nav-links a:hover { color: var(--terra-dk); }
.nav-links .dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(61,43,63,.14); padding: 10px; min-width: 240px;
  opacity: 0; visibility: hidden; transition: all .18s ease; z-index: 50;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: .87rem; }
.dropdown-menu a:hover { background: var(--terra-lt); color: var(--terra-dk); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 600; color: var(--terra-dk); font-size: .9rem; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 600;
}
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: all .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 82%; max-width: 360px; height: 100vh;
  background: #fff; z-index: 550; box-shadow: -10px 0 40px rgba(0,0,0,.15);
  padding: 100px 30px 30px; overflow-y: auto; transition: right .3s ease;
}
.mobile-menu.active { right: 0; }
.mobile-menu a { display: block; padding: 14px 0; font-weight: 500; font-size: 1.02rem; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .mm-group-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-lt); padding-top: 18px; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(61,43,63,.45); z-index: 540; opacity: 0; transition: opacity .25s ease; }
.overlay.active { display: block; opacity: 1; }

@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger, .mobile-menu, .overlay { display: flex; }
  .mobile-menu { flex-direction: column; }
  .nav-cta .btn { padding: 11px 20px; font-size: .85rem; }
}

/* HERO: full-width photo, centered content, single CTA */
.hero {
  position: relative; min-height: 620px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,43,63,.72) 0%, rgba(61,43,63,.6) 45%, rgba(74,59,82,.82) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding: 60px 24px; }
.hero .eyebrow { color: var(--terra-lt); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 16px 0 20px; }
.hero p.lead { font-size: 1.14rem; color: rgba(255,255,255,.92); margin: 0 auto 32px; max-width: 560px; }
.hero-cta-wrap { display: flex; justify-content: center; margin-bottom: 34px; }
.hero-trust {
  display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px 20px 6px 20px; padding: 16px 28px; backdrop-filter: blur(2px);
}
.hero-trust .trust-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--terra-lt); display: block; margin-bottom: 6px; }
.hero-trust .trust-items { display: flex; gap: 20px; flex-wrap: wrap; font-size: .88rem; color: #fff; font-weight: 500; }

@media (max-width: 640px) {
  .hero { min-height: 540px; }
  .hero-trust .trust-items { gap: 12px; justify-content: center; }
}

/* PAGE HERO SPLIT (interior pages) - left text, right circular photo on the purple-to-cream gradient */
.page-hero-split {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--plum) 0%, var(--terra-dk) 55%, var(--cream-alt) 100%);
  padding: 66px 5%;
}
.page-hero-split .phs-inner {
  max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 54px;
}
.page-hero-split .phs-text { flex: 1.15; }
.page-hero-split .phs-text h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.page-hero-split .phs-text p { color: rgba(255,255,255,.92); font-size: 1.05rem; max-width: 480px; }
.page-hero-split .phs-art { flex: 0 0 260px; position: relative; height: 260px; }
.page-hero-split .phs-art::before {
  content: ''; position: absolute; inset: -26px; border-radius: 50%; background: rgba(255,255,255,.16);
}
.page-hero-split .phs-art img {
  position: relative; width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 5px solid rgba(255,255,255,.3);
}
@media (max-width: 860px) {
  .page-hero-split .phs-inner { flex-direction: column; text-align: center; gap: 30px; }
  .page-hero-split .phs-text p { margin: 0 auto; }
  .page-hero-split .phs-art { flex: 0 0 200px; width: 200px; height: 200px; }
}

/* filled icon circles for path cards, replacing plain hollow rings */
.icon-circle {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: var(--terra-lt); color: var(--terra-dk);
}
.icon-circle.sage { background: var(--sage-lt); color: var(--sage-dk); }
.icon-circle svg { width: 26px; height: 26px; }

/* thin divider line between homepage sections, replacing the stat strip */
.divider-line { height: 3px; background: var(--plum); width: 100%; }

/* centered provider row for pages with only 2 providers */
.provider-row-centered { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; max-width: 640px; margin: 0 auto; }
.provider-row-centered .provider-card { flex: 1 1 280px; max-width: 300px; }

/* contact form success state */
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success.active { display: block; }
.form-success .icon-circle { margin: 0 auto 18px; width: 64px; height: 64px; }
.form-success .icon-circle svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* SECTIONS */
section { padding: 76px 5%; }
.section-alt { background: var(--cream-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-top: 10px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.03rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 1180px; margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

/* service path cards (home) */
.path-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 34px 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(61,43,63,.1); }
.path-card .ring { width: 42px; height: 42px; border-radius: 50%; border: 1.6px solid var(--terra); margin-bottom: 18px; }
.path-card.sage .ring { border-color: var(--sage); }
.path-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.path-card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.path-card a.more { font-weight: 600; font-size: .88rem; color: var(--terra-dk); }
.path-card.sage a.more { color: var(--sage-dk); }

/* standard card */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(61,43,63,.08); }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .93rem; }

/* provider card */
.provider-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.provider-card .photo { aspect-ratio: 4/4.3; overflow: hidden; background: var(--cream-alt); }
.provider-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.provider-card .info { padding: 20px 22px 24px; }
.provider-card .info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.provider-card .cred { font-size: .82rem; color: var(--terra-dk); font-weight: 600; margin-bottom: 10px; }
.provider-card .info p { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }
.provider-card a.more { font-size: .85rem; font-weight: 600; color: var(--sage-dk); }

/* condition list (numbered) */
.numbered-list { max-width: 800px; margin: 0 auto; }
.numbered-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.numbered-item .n { font-family: 'Newsreader', serif; font-size: 1.6rem; color: var(--terra); flex-shrink: 0; width: 44px; }
.numbered-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.numbered-item p { color: var(--muted); font-size: .93rem; }

.stat-strip { background: var(--plum); color: #fff; padding: 30px 5%; }
.stat-strip .grid-4 { text-align: center; }
.stat-strip .num { font-family: 'Newsreader', serif; font-size: 1.5rem; font-weight: 500; }
.stat-strip .lbl { font-size: .78rem; opacity: .82; margin-top: 6px; }

.testi { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px; }
.testi .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi p { font-style: italic; color: var(--text); margin-bottom: 16px; }
.testi .who { font-weight: 700; font-size: .9rem; color: var(--ink); }
.testi .who span { display: block; font-weight: 500; color: var(--muted); font-size: .82rem; }

.cta-band {
  background: linear-gradient(135deg, var(--plum), var(--terra-dk)); color: #fff; text-align: center;
  padding: 66px 5%;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-band p { opacity: .95; margin: 14px 0 28px; font-size: 1.02rem; }
.cta-band .btn-primary { background: #fff; color: var(--terra-dk); box-shadow: 0 10px 24px rgba(0,0,0,.16); }

/* accordion (FAQ) */
.acc-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.acc-q { padding: 20px 22px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.acc-q .plus { font-size: 1.3rem; color: var(--terra-dk); transition: transform .2s ease; }
.acc-item.open .acc-q .plus { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.acc-a p { padding: 0 22px 20px; color: var(--muted); }
.acc-item.open .acc-a { max-height: 400px; }

/* insurance chip strip */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto; }
.chip { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px 20px; font-weight: 600; font-size: .92rem; color: var(--ink); }

/* crisis note */
.crisis-note { background: var(--terra-lt); border: 1px solid #E6C4AA; border-radius: 14px; padding: 22px 26px; max-width: 800px; margin: 0 auto; }
.crisis-note h4 { font-size: 1rem; margin-bottom: 8px; color: var(--terra-dk); }
.crisis-note p { font-size: .92rem; color: var(--muted); }

/* forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 20px 50px rgba(61,43,63,.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
input, select, textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--border);
  font-family: inherit; font-size: .95rem; background: var(--cream); color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--terra); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* footer */
footer { background: var(--plum); color: #D8CDD4; padding: 66px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; max-width: 1180px; margin: 0 auto; }
.footer-grid h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-grid a { display: block; color: #C9BCC5; font-size: .89rem; margin-bottom: 11px; }
.footer-grid a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-icon { border-color: var(--terra-lt); color: var(--terra-lt); }
.footer-brand .logo-name { color: #fff; }
.footer-crisis { background: rgba(255,255,255,.08); border-radius: 6px 14px 6px 14px; padding: 14px 18px; font-size: .82rem; color: #E9DFE6; margin-top: 16px; max-width: 320px; }
.footer-disclosure { font-size: .78rem; font-style: italic; color: #B3A6AF; margin-top: 14px; }
.footer-bottom { max-width: 1180px; margin: 50px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #B3A6AF; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* utility */
.mt-lg { margin-top: 60px; }
.text-center { text-align: center; }
.badge-pill { display: inline-block; background: var(--sage-lt); color: #3E5238; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 10px; }
