/* From The Core Coaching — site styles (homepage + Resonant Voice page) */

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
  background: rgba(248, 248, 248, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--teal);
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-logo { display: block; }
.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--rose); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--teal);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  z-index: 99;
  background: var(--off-white);
  border-bottom: 2px solid var(--teal);
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 0.9rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(161, 143, 128, 0.15);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Photo credit (CSS hover, per README fix #3) ---------- */
.photo-credit-frame { position: relative; overflow: hidden; }

.photo-credit {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(45, 45, 45, 0.82);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-label);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.photo-credit-frame:hover .photo-credit { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 52%) 1fr;
  position: relative;
  overflow: hidden;
}

.hero-photo { position: relative; background: var(--white); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255, 255, 255, 0.15) 100%);
}

.hero-photo-tag {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.3rem 0.7rem;
  z-index: 1;
}

.hero-copy {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4.5rem 6rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 25%, rgba(164, 97, 97, 0.13) 0%, transparent 60%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  width: 260px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-copy > *:not(.hero-watermark) { position: relative; opacity: 0; animation: fadeUp 0.9s forwards; }
.hero-eyebrow { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.8rem; animation-delay: 0.2s; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 300; line-height: 1.1; color: var(--white); margin: 0 0 1.8rem; animation-delay: 0.4s; }
.hero-h1 em { font-style: italic; color: var(--blush); }
.hero-taglines { margin-bottom: 2.8rem; animation-delay: 0.6s; }
.hero-taglines span { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; font-style: italic; color: rgba(206, 191, 184, 0.65); line-height: 1.75; }
.hero-body { font-size: 0.92rem; font-weight: 300; line-height: 1.85; color: rgba(255, 255, 255, 0.48); max-width: 380px; margin: 0 0 2rem; animation-delay: 0.65s; }
.hero-tagline-line { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(206, 191, 184, 0.45); margin: 0 0 2rem; animation-delay: 0.85s; }
.hero-cta { animation-delay: 0.8s; align-self: flex-start; }

/* ---------- Buttons ---------- */
.btn-outline {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid var(--rose);
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s;
}
.btn-outline:hover { color: var(--white); background: var(--rose); }

.btn-solid-charcoal {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn-solid-charcoal:hover { background: #111; }

.btn-solid-rose {
  padding: 1rem 2rem;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.btn-solid-rose:hover { background: rgba(164, 97, 97, 0.8); }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(161, 143, 128, 0.4);
  color: var(--grey);
  font-family: var(--font-label);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-top: 1.5rem;
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

/* ---------- About ---------- */
.about-section { background: var(--white); padding: 8rem 0 3rem; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.1fr;
  gap: 7rem;
  align-items: stretch;
}

.about-photo { height: 100%; min-height: 520px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.divider-star {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider-star span { flex: 1; height: 1px; background: linear-gradient(to right, rgba(161, 143, 128, 0.35), transparent); }
.divider-star i { font-style: normal; color: var(--rose); font-size: 0.65rem; }

.body-copy { font-size: 0.98rem; font-weight: 300; line-height: 1.95; color: var(--grey); margin: 0 0 1.3rem; }

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--teal);
}
.credentials-list .cred-row { display: flex; align-items: baseline; gap: 1rem; font-size: 0.87rem; color: var(--grey); }
.credentials-list .cred-row .diamond { color: var(--rose); font-size: 0.42rem; }
.credly-row { display: flex; align-items: center; gap: 1rem; font-size: 0.87rem; color: var(--grey); }
.credly-crop { width: 75px; height: 75px; flex-shrink: 0; overflow: hidden; }
.credly-crop > div { width: 150px; height: 270px; transform: scale(0.5); transform-origin: top left; }

/* ---------- Organizations ---------- */
.orgs-section { background: var(--off-white); padding: 3rem 0 7rem; }

.orgs-photo { max-width: 480px; margin: 2.5rem auto 3rem; aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.orgs-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.orgs-intro { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--grey); max-width: 580px; margin: 0 auto 4rem; text-align: center; }

.org-group-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 1.8rem;
}

.org-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--sand-hairline);
  border: 1px solid var(--sand-hairline);
}

.org-cell {
  background: var(--white);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  transition: background 0.3s, color 0.3s;
}
.org-cell:hover { background: var(--charcoal); color: var(--white); }
.org-cell span { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; line-height: 1.3; }
.org-cell small { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; color: var(--grey); margin-top: 0.2rem; letter-spacing: 0.04em; }

.org-divider { height: 1px; background: linear-gradient(to right, var(--teal), rgba(80, 112, 118, 0.1), transparent); margin: 3.5rem 0; }

/* ---------- Framework ---------- */
.framework-section { background: var(--charcoal); padding: 3rem 0; }
.framework-section .eyebrow { color: var(--rose); }
.framework-section .section-heading { color: var(--white); }

.framework-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 4rem;
  flex-wrap: wrap;
}
.framework-header p { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: rgba(255, 255, 255, 0.38); max-width: 390px; margin: 0 0 1.2rem; }
.framework-link { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); transition: color 0.3s; }
.framework-link:hover { color: var(--white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.pillar-tile {
  padding: 3.5rem 2.5rem;
  background: var(--charcoal);
  border-top: 2px solid rgba(80, 112, 118, 0.25);
  transition: border-color 0.4s, background 0.4s;
}
.pillar-tile:hover { border-color: var(--rose); background: rgba(164, 97, 97, 0.05); }
.pillar-num { font-family: var(--font-display); font-size: 4.5rem; font-weight: 300; color: rgba(164, 97, 97, 0.13); line-height: 1; margin-bottom: 1.5rem; }
.pillar-label { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; display: block; }
.pillar-title { font-family: var(--font-display); font-size: 2.1rem; font-weight: 300; font-style: italic; color: var(--white); margin: 0; }
.pillar-desc { font-size: 0.9rem; font-weight: 300; color: rgba(255, 255, 255, 0.55); line-height: 1.75; margin-top: 1rem; }

/* Resonant Voice page uses smaller pillar titles with descriptions */
.pillar-tile.with-desc .pillar-title { font-size: 1.55rem; margin-bottom: 0.6rem; }

/* ---------- Offerings ---------- */
.offerings-section { background: var(--off-white); padding: 3rem 0; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.flagship-card {
  grid-column: span 2;
  background: var(--rose);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
  transition: box-shadow 0.4s, transform 0.4s;
}
.flagship-card:hover { box-shadow: var(--shadow-flagship); transform: translateY(-4px); }
.flagship-eyebrow { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); display: block; margin-bottom: 1.4rem; }
.flagship-card h3 { font-family: var(--font-display); font-size: 2.3rem; font-weight: 300; line-height: 1.2; color: var(--white); margin: 0 0 1rem; }
.flagship-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: rgba(255, 255, 255, 0.58); margin: 0 0 1.8rem; }
.flagship-list { list-style: none; margin: 0; padding: 0; }
.flagship-list li { font-size: 0.86rem; font-weight: 300; color: rgba(255, 255, 255, 0.58); padding: 0.65rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; gap: 0.8rem; }
.flagship-list li:last-child { border-bottom: none; }
.flagship-list li span { color: rgba(255, 255, 255, 0.3); }

.offer-card {
  padding: 3.5rem;
  background: var(--white);
  border: 1px solid rgba(161, 143, 128, 0.18);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.offer-card:hover { border-color: rgba(164, 97, 97, 0.35); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.offer-kicker { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 1.4rem; }
.offer-subtitle { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; font-weight: 300; color: var(--teal); margin: 0 0 0.5rem; }
.offer-card h3 { font-family: var(--font-display); font-size: 1.85rem; font-weight: 300; line-height: 1.2; color: var(--charcoal); margin: 0 0 1rem; }
.offer-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--grey); margin: 0 0 1.8rem; }
.offer-card .note { color: var(--teal); font-size: 0.8rem; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--white); padding: 3rem 0; }

.carousel { max-width: 760px; margin: 4rem auto 0; position: relative; }
.carousel-panel {
  min-height: 260px;
  padding: 3.5rem 4.5rem;
  border: 1px solid var(--blush-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carousel-label { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: block; white-space: pre-line; }
.carousel-quote { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; font-style: italic; line-height: 1.75; color: var(--charcoal); margin: 0 0 2rem; }
.carousel-name { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); white-space: pre-line; }
.carousel-role { font-size: 0.8rem; font-weight: 300; color: var(--grey); margin-top: 0.3rem; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--blush-border-strong);
  background: var(--white);
  color: var(--rose);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.carousel-arrow:hover { background: var(--rose); color: var(--white); }
.carousel-prev { left: -1.6rem; }
.carousel-next { right: -1.6rem; }

.carousel-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.carousel-dots button { width: 0.55rem; height: 0.55rem; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--blush-border-strong); }
.carousel-dots button.active { background: var(--rose); }

.see-all-btn { display: block; margin: 1rem auto 0; background: none; border: none; font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); cursor: pointer; transition: color 0.3s; }
.see-all-btn:hover { color: var(--rose); }

.testimonial-modal {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.8);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 1.5rem;
  overflow-y: auto;
}
.testimonial-modal.open { display: flex; }
.testimonial-modal-panel { background: var(--white); max-width: 960px; width: 100%; padding: 3.5rem; position: relative; }
.testimonial-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--grey); cursor: pointer; }
.testimonial-modal-close:hover { color: var(--rose); }
.testimonial-modal h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 300; line-height: 1.18; color: var(--charcoal); margin: 0 0 2.5rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card { padding: 2rem; border: 1px solid var(--blush-border); }
.testimonial-card .carousel-label { font-size: 0.54rem; margin-bottom: 0.9rem; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.7; color: var(--charcoal); margin: 0 0 1.4rem; }
.testimonial-card .carousel-name { font-size: 0.58rem; }
.testimonial-card .carousel-role { font-size: 0.78rem; }

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--charcoal); padding: 3rem 0; position: relative; overflow: hidden; }
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(80, 112, 118, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 50%, rgba(164, 97, 97, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-section .container { position: relative; }
.newsletter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 6rem; align-items: center; }
.newsletter-section .eyebrow { color: var(--teal); }
.newsletter-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 300; line-height: 1.18; color: var(--white); margin: 0 0 1.2rem; }
.newsletter-section h2 em { font-style: italic; color: var(--blush); }
.newsletter-section > .container > .newsletter-grid > div:first-child > p { font-size: 0.92rem; font-weight: 300; line-height: 1.85; color: rgba(255, 255, 255, 0.45); margin: 0 0 1.5rem; }
.newsletter-perks { display: flex; flex-direction: column; gap: 0.5rem; }
.newsletter-perks div { display: flex; align-items: center; gap: 0.8rem; font-size: 0.82rem; font-weight: 300; color: rgba(255, 255, 255, 0.4); }
.newsletter-perks span { color: var(--teal); font-size: 0.5rem; }

.form-label-tag { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); margin-bottom: 0.3rem; }

.field-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.9rem 1.1rem;
  outline: none;
  width: 100%;
}
.field-dark::placeholder { color: rgba(255, 255, 255, 0.35); }

.two-up { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.8rem; }

.form-stack { display: flex; flex-direction: column; gap: 1rem; }

.privacy-note { font-size: 0.72rem; font-weight: 300; color: rgba(255, 255, 255, 0.2); line-height: 1.6; margin: 0; }

.form-success { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--blush); text-align: center; padding: 2rem; }

.field-error { color: var(--blush); font-size: 0.72rem; font-family: var(--font-body); margin-top: -0.6rem; display: none; }
.field-error.visible { display: block; }

/* ---------- Contact / CTA ---------- */
.cta-section { background: var(--rose); padding: 3rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-watermark { position: absolute; inset: 0; background-repeat: no-repeat; background-position: center; background-size: 320px; opacity: 0.07; }
.cta-section .eyebrow { color: rgba(255, 255, 255, 0.55); }
.cta-section .container { position: relative; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: var(--white); margin: 1rem 0 1.5rem; line-height: 1.2; }
.cta-section h2 em { font-style: italic; color: rgba(255, 255, 255, 0.68); }
.cta-intro { font-size: 0.98rem; font-weight: 300; line-height: 1.85; color: rgba(255, 255, 255, 0.6); max-width: 460px; margin: 0 auto 3rem; }

.cta-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1040px;
  margin: 3.5rem auto 0;
  text-align: left;
}
.cta-photo img { width: 100%; border: 2px solid rgba(255, 255, 255, 0.15); }

.contact-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 1.2rem; }
.field-group { display: flex; flex-direction: column; gap: 0.45rem; }
.field-group.full { grid-column: 1 / -1; }
.field-group label { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

.field-on-rose {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
}
.field-on-rose::placeholder { color: rgba(255, 255, 255, 0.45); }
.field-on-rose option { color: var(--charcoal); background: var(--white); }
textarea.field-on-rose { resize: vertical; min-height: 120px; }

.btn-solid-white {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--white);
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  width: 100%;
  transition: background 0.3s, color 0.3s;
}
.btn-solid-white:hover { background: var(--charcoal); color: var(--white); }

.cta-success { text-align: center; padding: 2rem; font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: rgba(255, 255, 255, 0.8); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 5rem; margin-bottom: 4rem; }
.footer-logo { height: 48px; width: auto; margin-bottom: 1.5rem; }
.footer-tagline { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: rgba(255, 255, 255, 0.28); line-height: 1.7; margin: 0; }
.footer-connect { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-connect-label { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.7rem; }
.footer-connect-form { display: flex; gap: 0; }
.footer-connect-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  padding: 0.6rem 0.9rem;
  outline: none;
}
.footer-connect-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer-connect-form button {
  padding: 0.6rem 1.2rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.footer-connect-form button:hover { background: rgba(80, 112, 118, 0.7); }
.footer-motto { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.15); margin-top: 0.8rem; }

.footer-col-heading { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 0; padding: 0; }
.footer-links a { font-size: 0.86rem; font-weight: 300; color: rgba(255, 255, 255, 0.35); transition: color 0.3s; }
.footer-links a:hover { color: var(--blush); }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { font-size: 0.75rem; font-weight: 300; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.04em; }
.footer-sign { font-family: var(--font-display); font-size: 0.9rem; font-style: italic; color: rgba(164, 97, 97, 0.38); }

/* ---------- Responsive (breakpoint 860px, per README) ---------- */
@media (max-width: 860px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 60vh; }
  .hero-copy { padding: 3rem 1.5rem 4rem; }

  .about-section,
  .orgs-section,
  .framework-section,
  .offerings-section,
  .testimonials-section,
  .newsletter-section,
  .cta-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .about-section { padding-top: 4.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { min-height: 360px; }

  .framework-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; }

  .offerings-grid { grid-template-columns: 1fr; }
  .flagship-card { grid-column: span 1; grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .offer-card { padding: 2rem; }

  .org-row { grid-template-columns: 1fr; }

  .carousel-panel { padding: 3rem 2rem; }
  .carousel-prev, .carousel-next { position: static; transform: none; margin: 0 0.5rem; }
  .carousel-arrows-mobile { display: flex; justify-content: center; margin-top: 1.5rem; }

  .footer-grid { gap: 2.5rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
  .carousel-arrows-mobile { display: none; }
}

/* ================= Resonant Voice landing page ================= */
.rv-subnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
  background: rgba(45, 45, 45, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--teal);
}
.rv-subnav a { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
.rv-subnav-back { color: rgba(255, 255, 255, 0.6); }
.rv-subnav-back:hover { color: var(--rose); }
.rv-subnav-cta { color: var(--rose); }
.rv-subnav-cta:hover { color: var(--white); }

.rv-hero {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding-top: 4.2rem;
}
.rv-hero-copy {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.rv-hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(164, 97, 97, 0.13) 0%, transparent 60%);
  pointer-events: none;
}
.rv-hero-copy > * { position: relative; }
.rv-hero-eyebrow { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); display: block; }
.rv-hero-name { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1.1; margin-top: 0.3rem; }
.rv-hero-cred { font-size: 0.85rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.45); margin-top: 0.6rem; }
.rv-hero-tag { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-top: 1.2rem; }
.rv-hero-logo-panel { width: 100%; height: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; background: var(--white); padding: 2rem; }
.rv-hero-logo-panel img { max-width: 70%; max-height: 60%; object-fit: contain; }

.pull-quote-band { background: var(--rose); padding: 2.2rem var(--gutter); }
.pull-quote-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; }
.pull-quote-bar { width: 2px; height: 44px; background: rgba(255, 255, 255, 0.4); flex-shrink: 0; }
.pull-quote-text { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: rgba(255, 255, 255, 0.94); line-height: 1.4; margin: 0; }

.rv-framework-section { background: var(--white); padding: 6rem 0; }
.rv-framework-section p { font-size: 1rem; font-weight: 300; line-height: 1.95; color: var(--grey); max-width: 760px; margin: 1.8rem 0 0; }

.rv-pillars-section { background: var(--charcoal); padding: 6rem 0; }
.rv-pillars-section .section-heading { color: var(--white); margin-bottom: 3.5rem; }

.work-together-section { background: var(--off-white); padding: 6rem 0; }
.work-together-section .section-heading { margin-bottom: 3.5rem; }
.work-together-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.work-card { padding: 2.5rem; background: var(--white); border: 1px solid rgba(161, 143, 128, 0.18); border-top: 2px solid var(--teal); }
.work-card .offer-kicker { margin-bottom: 1rem; }
.work-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--charcoal); margin: 0 0 0.8rem; }
.work-card p { font-size: 0.86rem; font-weight: 300; line-height: 1.75; color: var(--grey); margin: 0 0 1.2rem; }
.work-card ul { list-style: none; margin: 0 0 1.4rem; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.work-card li { font-size: 0.82rem; font-weight: 300; color: var(--muted-grey); display: flex; gap: 0.5rem; }
.work-card li span { color: rgba(80, 112, 118, 0.6); }
.work-card a { font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }

.rv-testimonial-section { background: var(--white); padding: 6rem 0; }
.rv-testimonial-section .section-heading { margin-bottom: 3.5rem; }
.rv-testimonial-card { max-width: 640px; padding: 2.2rem; background: var(--off-white); border-left: 2px solid var(--teal); }
.rv-testimonial-card p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; line-height: 1.7; color: var(--charcoal); margin: 0 0 1.2rem; }

.rv-about-section { background: var(--off-white); padding: 6rem 0; }
.rv-about-grid { display: grid; grid-template-columns: minmax(240px, 1fr) 2fr; gap: 4rem; align-items: center; }
.rv-about-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.rv-about-creds { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-bottom: 1.4rem; }
.rv-about-creds div { font-size: 0.85rem; font-weight: 300; color: var(--muted-grey); display: flex; align-items: center; gap: 0.5rem; }
.rv-about-creds span { color: var(--rose); font-size: 0.4rem; }

.rv-cta-section { background: var(--charcoal); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.rv-cta-section .cta-watermark { background-size: 280px; }
.rv-cta-section .container { max-width: 700px; position: relative; }
.rv-cta-section h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 300; color: var(--white); margin: 0 0 1.2rem; line-height: 1.2; }
.rv-cta-section h2 em { font-style: italic; color: var(--blush); }
.rv-cta-links { display: flex; flex-direction: column; gap: 0.3rem; margin: 2rem 0; }
.rv-cta-links a { font-size: 0.9rem; font-weight: 300; color: rgba(255, 255, 255, 0.55); }

.rv-footer { background: var(--charcoal); padding: 1.6rem var(--gutter); border-top: 1px solid rgba(255, 255, 255, 0.06); text-align: center; }
.rv-footer span { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.25); }
.rv-footer a { color: rgba(255, 255, 255, 0.25); text-decoration: underline; }

@media (max-width: 860px) {
  .rv-hero { grid-template-columns: 1fr; }
  .rv-hero-logo-panel { min-height: 220px; }
  .rv-hero-copy { padding: 3rem 1.5rem; }
  .rv-framework-section, .rv-pillars-section, .work-together-section, .rv-testimonial-section, .rv-about-section, .rv-cta-section { padding: 4.5rem 0; }
  .rv-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem !important; }
}
