/* Mindful Speech — shared styles
   Palette: sage-teal + warm cream + coral accent. Calm, organic, human. */

:root {
  --teal-900: #04342C;
  --teal-800: #085041;
  --teal-700: #0F6E56;
  --teal-500: #1D9E75;
  --teal-200: #9FE1CB;
  --teal-50:  #E1F5EE;

  --coral-600: #993C1D;
  --coral-500: #D85A30;
  --coral-100: #F5C4B3;
  --coral-50:  #FAECE7;

  --cream:    #F1EFE8;
  --paper:    #FAF8F3;
  --ink:      #2C2C2A;
  --muted:    #5F5E5A;
  --line:     rgba(8, 80, 65, 0.14);

  --maxw: 1080px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 40px -24px rgba(8, 80, 65, 0.45);

  --font-display: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Mulish", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }
a { color: var(--teal-700); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tint { background: var(--cream); }
.section--mint { background: var(--teal-50); }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-700);
  background: #fff; border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: 100px; cursor: pointer;
  text-decoration: none; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { background: var(--coral-500); color: #fff; box-shadow: 0 12px 22px -12px rgba(216,90,48,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgba(216,90,48,.75); }
.btn-ghost { background: transparent; color: var(--teal-800); border-color: var(--teal-200); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal-50); color: var(--teal-700);
  display: grid; place-items: center;
}
.brand__name { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--teal-700); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.97rem; }
.nav__links a:hover { color: var(--teal-700); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--teal-800); }

/* Hero */
.hero { background: linear-gradient(180deg, var(--teal-50) 0%, var(--paper) 100%); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  padding: 76px 0 88px;
}
.hero__centered {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 88px 0 100px;
}
.hero__centered .hero__cta { justify-content: center; }
.hero h1 { margin-bottom: 18px; }
.hero .lead { margin-bottom: 28px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__art {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 70% 10%, var(--teal-200) 0%, transparent 55%),
    var(--teal-50);
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center; color: var(--teal-700);
  position: relative;
}

/* Image placeholder helper (swap for real <img>) */
.ph { display: grid; place-items: center; text-align: center; color: var(--teal-700); }
.ph small { display: block; font-size: .8rem; color: var(--muted); margin-top: 6px; max-width: 22ch; }
.ph svg { opacity: .8; }
img.photo { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

/* Highlights */
.highlights { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 18px; font-weight: 600; font-size: .95rem; color: var(--teal-800);
}
.chip svg { color: var(--coral-500); }

/* Cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--teal-50);
  color: var(--teal-700); display: grid; place-items: center; margin-bottom: 16px;
}
.card h3 { color: var(--teal-800); }
.card p { margin: 0; color: var(--muted); }

/* Split (about teaser) */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.portrait {
  aspect-ratio: 1; border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 30% 20%, var(--teal-200), var(--teal-50));
  border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden;
}

/* Banner CTA */
.banner { background: var(--coral-50); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; }
.banner h2 { color: var(--coral-600); }
.banner p { color: var(--coral-600); }
.phone-link { color: var(--coral-600); font-weight: 700; text-decoration: none; white-space: nowrap; }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 6px 22px; margin-bottom: 12px;
}
.faq summary { font-family: var(--font-display); font-size: 1.12rem; color: var(--teal-800);
  cursor: pointer; padding: 14px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--coral-500); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--muted); }

/* Article */
.article { max-width: 720px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: .95rem; margin-bottom: 8px; }
.article h2 { margin-top: 1.6em; }
.article ul { padding-left: 1.2em; }
.article li { margin-bottom: .5em; }
.callout {
  background: var(--teal-50); border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 1.6em 0;
}
.callout p { margin: 0; color: var(--teal-800); }

/* Post list */
.post-card { display: block; text-decoration: none; color: inherit; }
.post-card .tag { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-500); }
.post-card h3 { margin: 8px 0; }
.post-card p { color: var(--muted); margin: 0; }

/* Footer */
.footer { background: var(--teal-900); color: #cfe8df; }
.footer a { color: #cfe8df; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 64px 0 28px; }
.footer h4 { font-family: var(--font-display); color: #fff; font-weight: 500; margin: 0 0 14px; font-size: 1.05rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer__brand .brand__name { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s ease forwards; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; } .reveal.d4 { animation-delay: .32s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 860px) {
  .hero__grid, .split, .grid-3, .grid-2, .footer__grid { grid-template-columns: 1fr; }
  .hero__art { aspect-ratio: 16/10; max-height: 320px; }
  .section { padding: 60px 0; }
  .nav__links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px; display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links .btn { margin-top: 12px; justify-content: center; }
  .nav__toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
