/* ============================================================
   Hear Talk Grow — site styles
   Colors pulled from the logo: sage green, ink navy, warm cream
   ============================================================ */

:root {
  --ink:        #1E2E38;
  --ink-soft:   #40555F;
  --muted:      #6B7C85;
  --sage:       #C0D4CB;
  --sage-light: #E3EDE8;
  --sage-pale:  #F1F6F3;
  --sage-deep:  #6F9585;
  --sage-dark:  #46685C;
  --cream:      #F8F7F3;
  --white:      #FFFFFF;
  --line:       #E4E2DB;

  --radius:     18px;
  --radius-lg:  28px;
  --shadow-sm:  0 1px 2px rgba(30,46,56,.05), 0 4px 14px rgba(30,46,56,.05);
  --shadow-md:  0 2px 6px rgba(30,46,56,.06), 0 18px 40px rgba(30,46,56,.08);
  --max:        1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Quicksand', 'Nunito Sans', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1.1em; }
a { color: var(--sage-dark); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin: 0 0 .1em;
  line-height: 1.2;
}

.lead { font-size: 1.14rem; color: var(--ink-soft); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 999;
  border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(248,247,243,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand-text { height: 19px !important; }
@media (max-width: 1080px) { .brand-text { display: none; } }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 8px 12px; cursor: pointer;
  font-family: inherit; font-size: .95rem; color: var(--ink);
}

.site-nav ul {
  list-style: none; display: flex; align-items: center;
  gap: 4px; margin: 0; padding: 0; flex-wrap: wrap;
}
.site-nav a {
  display: block; padding: 8px 13px; border-radius: 999px;
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .95rem;
}
.site-nav a:hover { background: var(--sage-light); color: var(--ink); }
.site-nav a.active { background: var(--sage-light); color: var(--sage-dark); }
.site-nav .nav-cta {
  background: var(--ink); color: #fff; padding: 9px 18px; margin-left: 6px;
}
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta.active { background: var(--sage-dark); color: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; width: 100%; order: 3;
    border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav .nav-cta { margin: 6px 0 4px; text-align: center; }
  .header-inner { flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-family: 'Quicksand', sans-serif; font-size: 1.02rem;
  border: 2px solid transparent; cursor: pointer; transition: .18s ease;
  line-height: 1.2; text-align: center;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--sage); color: var(--ink); }
.btn-secondary:hover { background: var(--sage-deep); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 56px; align-items: center;
}
.hero-logo { max-width: 400px; margin: 0 auto; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { font-size: 1.2rem; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-grid .btn-row { justify-content: center; }
  .hero-grid > div:last-child { order: -1; }
  .hero-logo { max-width: 280px; }
  .hero { padding: 36px 0 44px; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; padding: 18px 0; }
.trustbar ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 34px; font-weight: 600; font-size: .95rem;
}
.trustbar li { display: flex; align-items: center; gap: 9px; }
.trustbar li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); flex: none;
}

/* ---------- Sections ---------- */
section { padding: 68px 0; }
.section-sage { background: var(--sage-pale); }
.section-white { background: var(--white); }
.section-tight { padding: 48px 0; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card p:last-child { margin-bottom: 0; }
.card .card-link {
  margin-top: auto; padding-top: 14px; font-weight: 700;
  text-decoration: none; color: var(--sage-dark); font-family: 'Quicksand', sans-serif;
}
.card .card-link::after { content: " →"; }
a.card { text-decoration: none; color: inherit; transition: .18s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sage); }

.card-icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--sage-light);
  display: grid; place-items: center; margin-bottom: 16px; font-size: 1.3rem;
  color: var(--sage-dark); flex: none;
}

/* ---------- Strategy list ---------- */
.strategy {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--sage);
  border-radius: 14px; padding: 22px 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.strategy h3 { margin-bottom: .3em; }
.strategy p { margin-bottom: .6em; color: var(--ink-soft); }
.strategy .try {
  background: var(--sage-pale); border-radius: 10px; padding: 10px 14px;
  font-size: .95rem; color: var(--sage-dark); margin: 0;
}
.strategy .try strong { color: var(--sage-dark); }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius-lg); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Lists ---------- */
.check { list-style: none; padding: 0; margin: 0 0 1.2em; }
.check li { position: relative; padding-left: 30px; margin-bottom: 11px; }
.check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--sage-deep); font-weight: 800;
}

/* ---------- Callout ---------- */
.callout {
  background: var(--sage-light); border-radius: var(--radius-lg);
  padding: 38px 40px; border: 1px solid var(--sage);
}
.callout h2 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Bio ---------- */
.bio {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.bio-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
@media (max-width: 780px) { .bio-grid { grid-template-columns: 1fr; } .bio { padding: 30px 24px; } }
.credentials { list-style: none; padding: 0; margin: 18px 0 0; }
.credentials li {
  padding: 10px 0; border-top: 1px solid var(--line); font-size: .97rem; color: var(--ink-soft);
}
.credentials li strong { color: var(--ink); }

/* ---------- Form ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
@media (max-width: 640px) { .form-card { padding: 26px 20px; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .96rem; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .88rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 12px; font-family: inherit; font-size: 1rem; background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-deep); background: #fff;
  box-shadow: 0 0 0 4px var(--sage-light);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: .88rem; color: var(--muted); margin-top: 14px; }
.form-status { margin-top: 18px; padding: 14px 18px; border-radius: 12px; display: none; font-weight: 600; }
.form-status.ok { display: block; background: var(--sage-light); color: var(--sage-dark); border: 1px solid var(--sage); }
.form-status.err { display: block; background: #FDECEC; color: #8C2F2F; border: 1px solid #F0C4C4; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- Contact strip ---------- */
.contact-methods { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 640px) { .contact-methods { grid-template-columns: 1fr; } }
.contact-methods a {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm); transition: .18s ease;
}
.contact-methods a:hover { border-color: var(--sage); transform: translateY(-2px); }
.contact-methods span { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.contact-methods strong { font-size: 1.12rem; font-family: 'Quicksand', sans-serif; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--sage-pale); padding: 56px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero .wrap { max-width: 860px; text-align: center; }
.page-hero p { color: var(--ink-soft); margin-bottom: 0; font-size: 1.1rem; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 12px;
}
details.faq summary {
  cursor: pointer; font-weight: 700; font-family: 'Quicksand', sans-serif;
  padding: 16px 0; font-size: 1.05rem; list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--sage-deep); font-size: 1.4rem; line-height: 1; }
details.faq[open] summary::after { content: "–"; }
details.faq p { color: var(--ink-soft); margin-top: 0; }

/* ---------- Gallery (work page) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery.two-up { grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 940px; margin: 0 auto; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery, .gallery.two-up { grid-template-columns: 1fr; } }

.gallery figure {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: .18s ease;
}
.gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: zoom-in; background: var(--sage-pale);
}
.gallery figcaption {
  padding: 14px 18px 16px; font-size: .93rem; color: var(--ink-soft); line-height: 1.5;
}

/* Placeholder tiles — swap each for an <img> when photos are ready */
.tile {
  background: var(--sage-pale); border: 1.5px dashed var(--sage);
  border-radius: var(--radius); aspect-ratio: 4/3; display: grid; place-items: center;
  color: var(--sage-dark); text-align: center; padding: 20px; font-size: .92rem;
}
.gallery .tile { border-radius: 0; border: none; border-bottom: 1.5px dashed var(--sage); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(30,46,56,.92); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: 14px; }
.lightbox figcaption { color: #E3EDE8; text-align: center; margin-top: 16px; font-size: .96rem; }
.lightbox figure { margin: 0; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: none; border: none;
  color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; padding: 8px 14px;
}

/* ---------- Photos ---------- */
.photo-round {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--sage-pale);
}
.photo-round img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 780px) { .photo-band { grid-template-columns: 1fr; } }
.photo-band .photo-round { aspect-ratio: 3/4; }
.photo-band .photo-round:nth-child(2) { aspect-ratio: 3/4; }

.photo-banner {
  width: 100%; max-height: 380px; object-fit: cover; display: block;
}
.photo-strip { padding: 0; }
.photo-strip img { width: 100%; max-height: 340px; object-fit: cover; display: block; }

.split .photo-round { aspect-ratio: 4/5; }
.split .photo-round.wide { aspect-ratio: 4/3; }

.photo-caption {
  font-size: .88rem; color: var(--muted); margin-top: 10px; text-align: center;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C9D6DC; padding: 56px 0 28px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 { color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .footer-logo { height: 118px; width: auto; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 20px;
  font-size: .87rem; color: #94A7B0; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
}

/* ---------- Utilities ---------- */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 28px; }
.small { font-size: .9rem; color: var(--muted); }
