/* Bloom Mental Health · bloommentalhealthlv.com · hand-written, no framework. Tokens read off the live site 2026-09-15. */
:root {
  --pink: #f2b9ba;
  --pink-soft: #ffd3d4;
  --pink-deep: #ffb5b6;
  --taupe: #958b78;
  --taupe-dark: #6d624e;
  --taupe-bar: #c1b9b0;
  --ink: #263238;
  --text: #70665b;
  --black: #161922;
  --muted: #686674;
  --line: #e7ded7;
  --beige: #f8f5f2;
  --gray: #f2f2f2;
  --white: #ffffff;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-hero: "Montserrat", var(--font);
  --font-label: "Open Sans", var(--font);
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 18px; line-height: 28px; font-weight: 500; color: var(--black); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; font-family: var(--font); color: var(--ink); letter-spacing: -1px; line-height: 1.15; }
h1 { font-size: 46px; font-weight: 700; }
h2 { font-size: 46px; font-weight: 700; }
h3 { font-size: 35px; font-weight: 700; line-height: 42px; }
h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
p { margin: 0 0 18px; }
.pink { color: var(--pink); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 30px; }
.eyebrow { display: block; font-size: 15px; font-weight: 700; color: #000; letter-spacing: 0; margin-bottom: 14px; line-height: 18px; }
.eyebrow-caps { display: block; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.zigzag { width: 110px; height: 10px; margin: 6px 0 0; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'><path d='M0 8 L4 2 L8 8 L12 2 L16 8' fill='none' stroke='%23263238' stroke-width='1.4'/></svg>") repeat-x left center; }

/* buttons */
.btn { display: inline-block; font-family: var(--font); font-weight: 700; font-size: 18px; line-height: 18px; padding: 17px 30px; border-radius: 6px; background: var(--taupe); color: var(--white); border: 0; cursor: pointer; transition: background .2s ease, transform .2s ease; text-align: center; }
.btn:hover { background: var(--taupe-dark); }
.btn-outline { background: var(--white); color: var(--ink); border: 1.5px solid #6a5d4e; padding: 14px 30px; }
.btn-outline:hover { background: var(--beige); }
.btn-pill { border-radius: 999px; padding: 15px 28px; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.btn-hero { font-family: var(--font-hero); font-size: 12px; font-weight: 700; line-height: 14px; letter-spacing: 0; padding: 10px 30px; border-radius: 0; background: var(--pink-soft); color: #212121; }
.btn-hero:hover { background: var(--pink-deep); }

/* header */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.logo img { width: 240px; height: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-weight: 500; font-size: 18px; color: var(--black); }
.nav a[aria-current="page"] { color: var(--pink); }
.nav a:hover { color: var(--taupe); }
.nav .btn-outline { margin-left: 4px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 0; transition: transform .2s; }

/* hero */
.hero { position: relative; min-height: 868px; background: var(--taupe-bar) url("hero.jpg") right center / cover no-repeat; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(60,45,40,.35) 0%, rgba(60,45,40,.10) 55%, rgba(60,45,40,0) 100%); }
.hero .wrap { position: relative; padding-top: 296px; padding-bottom: 120px; }
.hero-label { display: inline-block; background: var(--taupe-bar); color: var(--white); font-family: var(--font-label); font-size: 12px; letter-spacing: 6px; line-height: 22px; padding: 2px 26px; margin-bottom: 30px; }
.hero h1 { font-family: var(--font-hero); font-size: 60px; line-height: 70px; font-weight: 700; color: var(--white); letter-spacing: 0; margin: 0 0 96px; }

/* sections */
.section { padding: 100px 0; }
.section-tight { padding: 60px 0 40px; }
.center { text-align: center; }
.intro h2 { font-size: 46px; margin-bottom: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.feature { text-align: center; padding: 0 10px; }
.feature img { width: 120px; margin: 0 auto 22px; }
.feature h4 { margin-bottom: 14px; }
.feature p { font-size: 16px; line-height: 24px; color: var(--text); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: 14px; }
.split .copy p { color: var(--black); font-size: 17px; line-height: 27px; }
.split h2 { margin-bottom: 26px; }
.split .copy .btn { margin-top: 12px; }

.services-head { padding: 90px 0 30px; }
.services-head h2 { max-width: 820px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.card { background: var(--beige); border-radius: 12px; padding: 40px 30px; text-align: center; }
.card h4 { font-size: 22px; margin-bottom: 18px; }
.card .icon { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; background: var(--white); display: grid; place-items: center; }
.card .icon svg { width: 44px; height: 44px; }
.card p { color: var(--text); font-size: 16px; line-height: 25px; margin: 0; }
.cards-cta { text-align: center; margin-top: 40px; }

.cta { background: var(--gray); border-radius: 16px; padding: 0; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; }
.cta .copy { padding: 110px 30px 80px 30px; }
.cta h2 { font-size: 52px; line-height: 1.05; margin-bottom: 26px; }
.cta p { font-size: 17px; line-height: 26px; max-width: 460px; margin-bottom: 28px; }
.cta img { width: 100%; max-width: 520px; margin: 40px auto 0; }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 20px 0 40px; }
.service-row img { border-radius: 14px; }
.service-row h3 { font-size: 30px; line-height: 38px; margin-bottom: 14px; }
.service-row p { color: var(--text); font-size: 16px; line-height: 26px; margin: 0; }
.service-row + .service-row { border-top: 0; }

.faq-list { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 60px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: 0; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 30px; font-weight: 300; color: var(--ink); line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .answer { padding: 0 28px 20px; color: var(--text); font-size: 16px; line-height: 25px; }

.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-top: 60px; align-items: start; }
.contact-list div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list div:last-child { border-bottom: 0; }
.contact-list h4 { font-size: 18px; margin-bottom: 8px; }
.contact-list p { margin: 0; color: var(--text); font-size: 16px; }
.map { width: 100%; height: 370px; border: 0; border-radius: 6px; }
.form-card { max-width: 660px; margin: 60px auto 0; border: 1px solid var(--taupe); border-radius: 8px; padding: 40px 44px; }
.form-card label { display: block; font-size: 15px; color: var(--text); margin: 0 0 10px; }
.form-card input, .form-card textarea { width: 100%; font: inherit; font-size: 16px; color: var(--black); background: var(--beige); border: 1px solid #ebe3dc; border-radius: 12px; padding: 14px 18px; margin-bottom: 26px; }
.form-card textarea { min-height: 190px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus { outline: 2px solid var(--pink); outline-offset: 1px; }
.form-msg { margin-top: 12px; font-size: 15px; color: var(--taupe-dark); min-height: 22px; }
.form-msg.err { color: #b3261e; }

.request-frame { width: 100%; border: 0; min-height: 1300px; display: block; }

/* footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 60px; }
.site-footer .cols { display: grid; grid-template-columns: 1.3fr 1.2fr .7fr; gap: 40px; padding: 60px 0 40px; }
.site-footer .cols p { font-size: 16px; line-height: 25px; color: var(--muted); }
.site-footer .logo img { width: 200px; margin-bottom: 20px; }
.site-footer h4 { font-size: 17px; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 6px; font-size: 16px; }
.site-footer a:hover { color: var(--taupe); }
.copyright { border-top: 1px solid var(--line); padding: 22px 0; font-size: 15px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.copyright b { color: var(--black); font-weight: 700; }
.to-top { width: 30px; height: 30px; border-radius: 6px; background: var(--taupe); color: var(--white); display: grid; place-items: center; font-size: 14px; }

/* responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: 48px; line-height: 56px; }
  h2, .intro h2 { font-size: 38px; }
  .cta h2 { font-size: 40px; }
}
@media (max-width: 768px) {
  body { font-size: 17px; line-height: 27px; }
  .wrap { padding: 0 20px; }
  .site-header .wrap { height: 80px; }
  .logo img { width: 180px; }
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 80px; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.06); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav .btn-outline { margin: 14px 0 0; border-bottom: 1.5px solid #6a5d4e; }
  .hero { min-height: 720px; background-position: 62% center; }
  .hero .wrap { padding-top: 416px; padding-bottom: 60px; text-align: center; }
  .hero-label { font-size: 11px; letter-spacing: 4px; padding: 2px 12px; }
  .hero h1 { font-size: 38px; line-height: 48px; letter-spacing: -2px; margin-bottom: 44px; }
  .section { padding: 60px 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .split, .service-row, .contact-grid, .cta { grid-template-columns: 1fr; }
  .cta .copy { padding: 50px 24px 20px; }
  .cta img { max-width: 360px; }
  .split .copy { text-align: left; }
  h1, h2, .intro h2 { font-size: 30px; }
  h3, .service-row h3 { font-size: 26px; line-height: 32px; }
  .site-footer .cols { grid-template-columns: 1fr; text-align: center; padding: 40px 0 20px; }
  .site-footer .logo img { margin: 0 auto 20px; }
  .copyright { flex-direction: column; gap: 10px; text-align: center; }
  .form-card { padding: 28px 20px; }
}
@media (max-width: 440px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .feature p { font-size: 15px; }
}

/* contact page (2026-09-16): the form is the point, so it leads */
.contact-hero { padding: 56px 0 34px; }
.contact-hero h1 { margin-bottom: 18px; }
.contact-lead { max-width: 640px; color: var(--text); font-size: 17px; line-height: 27px; margin-bottom: 22px; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.contact-call { font-weight: 500; color: var(--text); }
.contact-call b { color: var(--ink); }
.contact-main { padding: 10px 0 70px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 40px; align-items: start; }
.form-primary { margin: 0; max-width: none; background: var(--beige); border: 1px solid var(--line); border-radius: 16px; padding: 36px 40px 30px; }
.form-primary input, .form-primary textarea { background: var(--white); }
.form-primary textarea { min-height: 150px; }
.form-title { font-size: 30px; margin-bottom: 8px; }
.form-sub { color: var(--text); font-size: 15px; line-height: 23px; margin-bottom: 24px; }
.btn-send { width: 100%; font-size: 19px; padding: 19px 30px; }
.form-note { margin: 18px 0 0; font-size: 13px; line-height: 20px; color: var(--text); }
.contact-side .contact-list { border: 1px solid var(--line); border-radius: 16px; padding: 6px 24px; margin-bottom: 20px; }
.map-side { height: 300px; border-radius: 16px; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-primary { padding: 26px 20px 22px; }
  .contact-hero { padding: 36px 0 24px; }
  .contact-actions .btn { width: 100%; }
}
