/* ═══════════════════════════════════════════════════════════════════
   Willowbrook Therapy & Counseling — hand-crafted stylesheet
   Palette: warm cream, deep forest ink, sage, soft clay accent
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ink: #22372b;
  --ink-soft: #45594c;
  --moss: #3e5c4b;
  --sage: #6e8f7c;
  --sage-lt: #dbe7de;
  --cream: #faf6ef;
  --sand: #f1eadd;
  --white: #fffdf9;
  --clay: #c97d5d;
  --clay-dk: #b0674a;
  --line: #e4dccc;
  --radius: 18px;
  --shadow: 0 10px 40px -12px rgba(34, 55, 43, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--moss); text-decoration: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { width: min(1120px, 92%); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--clay);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--clay);
  border-radius: 2px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; font-family: var(--font-body);
  border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--moss); color: var(--white); box-shadow: 0 8px 24px -8px rgba(62, 92, 75, 0.55); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-clay { background: var(--clay); color: var(--white); box-shadow: 0 8px 24px -8px rgba(201, 125, 93, 0.55); }
.btn-clay:hover { background: var(--clay-dk); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn svg { width: 17px; height: 17px; }

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 13px;
  background: linear-gradient(140deg, var(--sage) 0%, var(--moss) 100%);
  display: grid; place-items: center; color: var(--white);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-family: var(--font-display); font-size: 19px; color: var(--ink); line-height: 1.1; }
.brand-sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--clay); border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-cta { padding: 11px 22px; font-size: 14.5px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 90px 0 100px; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: 0;
}
.blob-1 { width: 480px; height: 480px; background: var(--sage-lt); top: -140px; right: -100px; }
.blob-2 { width: 380px; height: 380px; background: #f3ddcf; bottom: -160px; left: -120px; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero h1 { font-size: clamp(40px, 5.2vw, 62px); margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero p.lede { font-size: 19px; color: var(--ink-soft); max-width: 52ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--ink-soft); }
.hero-note svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; }

.hero-card {
  position: relative;
  background: var(--white); border-radius: 28px; padding: 38px 34px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-card::before {
  content: ""; position: absolute; inset: -14px -14px auto auto;
  width: 90px; height: 90px; border-radius: 30px;
  background: var(--clay); opacity: 0.12; z-index: -1;
}
.hero-card h3 { font-size: 22px; margin-bottom: 6px; }
.hero-card .sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.hours-row:last-of-type { border: none; }
.hours-row b { color: var(--moss); font-weight: 600; }
.hero-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ── Sections ───────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin: 14px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.alt { background: var(--sand); }

/* ── Service cards ──────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--sage-lt); color: var(--moss);
  display: grid; place-items: center; margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.card-price {
  margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink-soft);
}
.card-price b { color: var(--clay); font-size: 15px; }
.card-link { font-weight: 600; font-size: 14.5px; color: var(--moss); }
.card-link:hover { color: var(--clay); }

/* ── Stats band ─────────────────────────────────────────────────── */
.stats {
  background: var(--ink); color: var(--cream); border-radius: 26px;
  padding: 52px 40px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; text-align: center;
}
.stat b { display: block; font-family: var(--font-display); font-size: 42px; color: #e9c7a8; }
.stat span { font-size: 14px; opacity: 0.75; }

/* ── Steps ──────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: 34px 28px 30px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 46px; color: var(--sage-lt);
  position: absolute; top: 18px; right: 24px; line-height: 1;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ── Testimonials ───────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--line); position: relative;
}
.quote::before {
  content: "\201C"; font-family: var(--font-display); font-size: 70px;
  color: var(--clay); opacity: 0.35; position: absolute; top: 6px; left: 20px; line-height: 1;
}
.quote p { font-size: 15.5px; font-style: italic; color: var(--ink-soft); margin: 26px 0 18px; }
.quote cite { font-style: normal; font-size: 13.5px; font-weight: 600; color: var(--sage); letter-spacing: 0.04em; }
.stars { color: #d9a441; font-size: 14px; letter-spacing: 2px; }

/* ── FAQ accordion ──────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-weight: 600; font-size: 16.5px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 26px;
  color: var(--clay); transition: transform 0.25s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-soft); font-size: 15.5px; }

/* ── Blog ───────────────────────────────────────────────────────── */
.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-band { height: 8px; background: linear-gradient(90deg, var(--sage), var(--clay)); }
.post-body { padding: 28px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--sage); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); }
.post-body h3 { font-size: 20px; margin-bottom: 10px; }
.post-body h3 a { color: var(--ink); }
.post-body h3 a:hover { color: var(--clay); }
.post-body p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.post-body .card-link { margin-top: 18px; }

.article { max-width: 720px; margin-inline: auto; }
.article h1 { font-size: clamp(32px, 4.4vw, 46px); margin: 16px 0 26px; }
.article-body p { margin-bottom: 20px; color: var(--ink-soft); font-size: 17px; }

/* ── Forms ──────────────────────────────────────────────────────── */
.form-shell {
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  padding: 44px; box-shadow: var(--shadow); max-width: 720px; margin-inline: auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: 12px; font-family: var(--font-body); font-size: 15.5px;
  background: var(--cream); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(110, 143, 124, 0.15);
}
textarea { resize: vertical; min-height: 110px; }
.radio-row { display: flex; gap: 12px; }
.radio-pill { flex: 1; position: relative; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
  display: block; text-align: center; padding: 12px; border: 1.5px solid var(--line);
  border-radius: 12px; font-size: 14.5px; font-weight: 500; cursor: pointer;
  background: var(--cream); transition: 0.2s;
}
.radio-pill input:checked + span { background: var(--moss); color: var(--white); border-color: var(--moss); }
.form-shell .btn { width: 100%; justify-content: center; margin-top: 26px; }
.field-error { color: #b3452f; font-size: 13px; margin-top: 5px; }
.form-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-note svg { width: 14px; height: 14px; color: var(--sage); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.flash {
  max-width: 720px; margin: 0 auto 24px; padding: 16px 22px; border-radius: 14px;
  background: #e5f0e5; border: 1px solid #bcd8bc; color: #2c5e2c; font-size: 15px;
}
.flash.error { background: #f7e6e0; border-color: #e5bfae; color: #96422a; }

/* ── Contact / map ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.info-tile { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px dashed var(--line); }
.info-tile:last-child { border: none; }
.info-tile .card-icon { width: 46px; height: 46px; flex-shrink: 0; margin: 0; }
.info-tile b { display: block; font-size: 15.5px; }
.info-tile span, .info-tile a { font-size: 14.5px; color: var(--ink-soft); }
.map-frame {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); height: 100%; min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ── CTA banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--moss) 0%, var(--ink) 100%);
  border-radius: 30px; padding: 70px 50px; text-align: center; color: var(--cream);
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06);
}
.cta-banner::before { width: 300px; height: 300px; top: -140px; right: -80px; }
.cta-banner::after { width: 220px; height: 220px; bottom: -110px; left: -60px; }
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; position: relative; }
.cta-banner p { opacity: 0.85; max-width: 54ch; margin: 0 auto 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* ── About page ─────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.portrait {
  border-radius: 26px; background: linear-gradient(160deg, var(--sage-lt), var(--sand));
  border: 1px solid var(--line); aspect-ratio: 4/4.6;
  display: grid; place-items: center; position: sticky; top: 100px;
}
.portrait svg { width: 45%; height: auto; color: var(--sage); opacity: 0.8; }
.portrait-caption { text-align: center; padding: 0 24px; }
.portrait-caption b { font-family: var(--font-display); font-size: 22px; display: block; }
.portrait-caption span { font-size: 13.5px; color: var(--ink-soft); }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.credential { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; }
.credential svg { width: 20px; height: 20px; color: var(--clay); flex-shrink: 0; margin-top: 3px; }

/* ── Admin ──────────────────────────────────────────────────────── */
.admin-wrap { padding: 50px 0 80px; }
.stat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.stat-tile { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.stat-tile b { font-family: var(--font-display); font-size: 34px; display: block; color: var(--moss); }
.stat-tile span { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.table-shell { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: auto; margin-bottom: 40px; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 760px; }
th { text-align: left; padding: 15px 18px; background: var(--sand); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
td { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: top; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge.pending { background: #fdf0d9; color: #9a6b1f; }
.badge.confirmed { background: #e2efe2; color: #2c6b2c; }
.badge.completed { background: #e3e8f5; color: #3d5590; }
.badge.cancelled { background: #f5e3e3; color: #954040; }
.inline-form { display: inline-flex; gap: 8px; align-items: center; }
.inline-form select { padding: 7px 10px; font-size: 13px; width: auto; }
.inline-form .btn { padding: 8px 14px; font-size: 13px; margin: 0; width: auto; }
.login-shell { max-width: 420px; margin: 80px auto; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(250, 246, 239, 0.8); padding: 64px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
footer h4 { color: var(--cream); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
footer a { color: rgba(250, 246, 239, 0.75); display: block; padding: 5px 0; font-size: 14.5px; }
footer a:hover { color: #e9c7a8; }
footer p { font-size: 14.5px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.15); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.65;
}
.crisis-note {
  background: rgba(255, 255, 255, 0.07); border-radius: 12px; padding: 14px 18px;
  font-size: 13px; margin-top: 18px; line-height: 1.55;
}

/* ── Reveal animation ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .steps, .quotes { grid-template-columns: 1fr 1fr; }
  .stats, .stat-tiles { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portrait { position: static; max-width: 420px; }
  .hero { padding: 60px 0 70px; }
}
@media (max-width: 640px) {
  .cards, .steps, .quotes, .form-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 20px 5%;
    gap: 4px; border-bottom: 1px solid var(--line); align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 16px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .section { padding: 60px 0; }
  .form-shell { padding: 30px 22px; }
  .cta-banner { padding: 50px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══ Engagement upgrades ═══════════════════════════════════════ */

/* Announcement bar */
.announce {
  background: var(--ink); color: var(--cream); font-size: 13.5px;
  text-align: center; padding: 9px 16px;
  display: flex; justify-content: center; align-items: center; gap: 9px;
}
.announce .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #8fd694;
  animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
.announce a { color: #e9c7a8; font-weight: 600; margin-left: 4px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143, 214, 148, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(143, 214, 148, 0); }
}

/* Floating hero badges */
.float-badge {
  position: absolute; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
  animation: floaty 5s ease-in-out infinite; white-space: nowrap; z-index: 2;
}
.fb-1 { top: -22px; left: -34px; color: var(--moss); }
.fb-2 { bottom: -20px; right: -26px; color: var(--clay); animation-delay: 2.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Specialties marquee */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--white); padding: 16px 0; position: relative;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display); font-size: 17px; color: var(--ink-soft);
  padding: 0 26px; white-space: nowrap; position: relative;
}
.marquee span::after {
  content: "✿"; position: absolute; right: -8px; color: var(--clay); opacity: 0.55; font-size: 13px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Card icon hover flip */
.card:hover .card-icon { background: var(--moss); color: var(--white); transform: rotate(-6deg) scale(1.05); }
.card-icon { transition: background 0.3s, color 0.3s, transform 0.3s; }

/* Button arrow nudge */
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

/* Nav shadow when scrolled */
.nav.scrolled { box-shadow: 0 8px 30px -14px rgba(34, 55, 43, 0.25); }

/* Breathing widget */
.breathe-wrap { text-align: center; padding: 20px 0 10px; }
.breathe-stage { display: grid; place-items: center; height: 240px; margin: 10px 0 6px; }
.breath-circle {
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--sage-lt), var(--sage));
  display: grid; place-items: center; color: var(--white);
  font-weight: 600; font-size: 14px; letter-spacing: 0.06em;
  box-shadow: 0 0 0 22px rgba(110, 143, 124, 0.12), 0 0 0 44px rgba(110, 143, 124, 0.06);
  transition: transform 0.3s;
}
.breath-circle.breathing { animation: breathe 16s ease-in-out infinite; }
/* Box breathing: 4s in · 4s hold · 4s out · 4s rest (16s cycle) */
@keyframes breathe {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.45); }
  50%  { transform: scale(1.45); }
  75%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.breathe-wrap .hint { font-size: 14px; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .breath-circle, .breath-circle.breathing, .float-badge, .announce .pulse-dot { animation: none; }
}
@media (max-width: 640px) {
  .fb-1 { left: -6px; } .fb-2 { right: -6px; }
  .announce { font-size: 12px; }
}
.breath-circle span { text-align: center; line-height: 1.4; }
