:root {
  --cream: #faf7f2;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #64615c;
  --line: #ded8ce;
  --blue: #1b2a4e;
  --blue-soft: #e6ebf5;
  --accent: #c2410c;
  --accent-soft: #f6ded2;
  --teal: #0f766e;
  --teal-soft: #dcefed;
  --sage: #d9e7df;
  --shadow: 0 18px 50px rgba(27, 42, 78, 0.11);
  --radius: 8px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(27, 42, 78, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream) 0%, #f6f9f8 48%, var(--paper) 100%);
  background-size: 72px 72px, auto;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

main {
  counter-reset: sectionLabel;
}

body::selection {
  background: var(--accent-soft);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--container));
  min-height: 76px;
  margin: 0.75rem auto 0;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(222, 216, 206, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(27, 42, 78, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  color: var(--blue);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 255px);
  height: auto;
}

.site-header .brand-logo {
  width: clamp(145px, 13vw, 190px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: -0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--blue-soft);
}

.main-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: #263861;
}

.hero {
  min-height: calc(100vh - 90px);
  padding-top: 5rem;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  counter-increment: sectionLabel;
  content: counter(sectionLabel, decimal-leading-zero);
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  padding-inline: 0.35rem;
  border-radius: 5px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-inline: auto;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 1.04;
}

h2 {
  font-size: 3.05rem;
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 940px;
  margin: 1.45rem auto 0;
  color: #5d626b;
  font-size: 1.28rem;
  line-height: 1.75;
}

.hero-statement {
  max-width: 1040px;
  margin: 1.35rem auto 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-statement span {
  display: block;
}

.statement-line-keep,
.keep-together {
  white-space: nowrap;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(194, 65, 12, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a7360a;
}

.button-secondary {
  background: transparent;
  border-color: rgba(27, 42, 78, 0.34);
  color: var(--blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-soft);
  border-color: var(--blue);
}

.button-ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.seal-strip,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.seal-strip {
  justify-content: center;
}

.seal-strip li,
.chip-row li {
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.people-band,
.proof-section,
.testimonials-section {
  background: var(--blue);
  color: var(--white);
}

.people-band h2,
.people-band h3,
.proof-section h2,
.testimonials-section h2 {
  color: var(--white);
}

.proof-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.people-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3rem;
  align-items: start;
}

.people-grid > div:first-child p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.people-grid h2 {
  font-size: 2.15rem;
  line-height: 1.14;
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: #ffd0bd;
  font-weight: 800;
}

.team-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.person-card,
.advisor-card,
.pain-card,
.pillar-card,
.method-card,
.testimonial-card,
.metric-grid article,
.form-shell {
  border-radius: var(--radius);
}

.person-card {
  min-height: 204px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.person-photo {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  object-position: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.avatar.large {
  width: 70px;
  height: 70px;
  font-size: 1.1rem;
}

.person-card h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.25;
  white-space: nowrap;
}

.person-card p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading.wide {
  max-width: 900px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pain-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(27, 42, 78, 0.06);
}

.card-number,
.pillar-card span {
  color: var(--accent);
  font-weight: 900;
}

.pain-card h3,
.pillar-card h3,
.method-card h3 {
  margin-top: 0.65rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.pain-card p,
.pillar-card p,
.method-card p,
.advisor-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pain-card small {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.55;
}

.bridge-copy {
  max-width: 760px;
  margin: 2rem auto 0;
  color: var(--blue);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.25;
  text-align: center;
}

.pillars-section {
  background: #f5fbf9;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.pillar-card {
  min-height: 300px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.pillar-card:last-child {
  border-right: 0;
}

.formations-section {
  background: var(--paper);
}

.formation-accordion {
  margin-top: 1.7rem;
  display: grid;
  gap: 0.85rem;
}

.formation-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(27, 42, 78, 0.05);
}

.formation-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: transparent;
  transition: background-color 180ms ease;
}

.formation-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 1rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.formation-trigger:hover,
.formation-trigger:focus-visible {
  background: #f9fbfb;
}

.formation-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.formation-trigger strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.25;
}

.formation-trigger small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.formation-meta {
  max-width: 260px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: right;
}

.formation-content {
  display: none;
  padding: 0 1rem 1.15rem;
}

.formation-panel.is-open .formation-content {
  display: block;
}

.formation-panel.is-open {
  border-color: rgba(194, 65, 12, 0.42);
  box-shadow: 0 18px 42px rgba(194, 65, 12, 0.1);
}

.formation-panel.is-open::before {
  background: var(--accent);
}

.formation-panel.is-open .formation-trigger {
  background: linear-gradient(90deg, var(--accent-soft), var(--white));
}

.formation-panel.is-open .formation-index {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 7px rgba(194, 65, 12, 0.12);
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.content-columns > div {
  min-height: 270px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.content-columns h4 {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-size: 0.88rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.content-columns ul {
  margin: 0;
  padding-left: 1.1rem;
}

.content-columns li {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.formation-summary > div {
  min-height: 0;
}

.formation-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.formation-summary strong {
  color: var(--blue);
  font-weight: 900;
}

.summary-column-benefit {
  background: var(--accent-soft);
}

.summary-column-benefit li,
.summary-column-contents li {
  color: var(--muted);
  font-weight: 400;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.center-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
}

.center-cta p {
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-grid article {
  min-height: 180px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.metric-grid strong {
  display: block;
  color: #ffd0bd;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.authority-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.authority-band article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  padding: 0.85rem;
  border-radius: 6px;
  background: var(--white);
}

.authority-band img {
  width: auto;
  max-width: 128px;
  max-height: 42px;
  margin-bottom: 0.55rem;
  object-fit: contain;
  object-position: left center;
}

.authority-card-fad img {
  max-width: 124px;
  max-height: 48px;
}

.authority-band p {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.authority-card-centered {
  align-items: center;
  text-align: center;
}

.authority-card-centered img {
  max-width: 150px;
  max-height: 52px;
  object-position: center;
}

.authority-card-centered p {
  max-width: 390px;
}

.organization-groups {
  display: grid;
  gap: 1.05rem;
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 6px;
  background: #f2ece2;
  color: var(--ink);
}

.organization-group h3 {
  margin: 0 0 0.55rem;
  color: #85878d;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.organization-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.organization-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.38rem 0.68rem;
  border: 1px solid #ded6ca;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: none;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.logo-cloud span {
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.advisor-card {
  min-height: 295px;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(27, 42, 78, 0.06);
}

.advisor-photo {
  display: block;
  width: 92px;
  height: 92px;
  border: 2px solid var(--blue-soft);
  border-radius: 50%;
  background: var(--blue-soft);
  object-fit: cover;
  object-position: center;
}

.advisor-card h3 {
  margin-top: 1rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
}

.method-section {
  background: #f5f3ef;
}

.method-section .section-heading.wide {
  max-width: 1180px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.method-card {
  min-height: 380px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.method-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.method-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--blue);
  font-size: 0.92rem;
  line-height: 1.4;
}

.community-card {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 1.25rem;
  align-items: center;
  max-width: 980px;
  margin: 1.5rem auto 0;
  padding: 1.35rem;
  border: 1px solid rgba(194, 65, 12, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--accent-soft), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 34px rgba(194, 65, 12, 0.08);
}

.mini-label {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.community-card .mini-label {
  margin-bottom: 0.5rem;
}

.community-card h3 {
  color: var(--blue);
  font-size: 2rem;
}

.community-card p:not(.eyebrow) {
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.55;
}

.with-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.carousel-controls {
  display: flex;
  gap: 0.45rem;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonials-section {
  background: var(--paper);
  color: var(--ink);
}

.testimonials-section h2 {
  color: var(--ink);
}

.testimonials-heading {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 1rem) / 2);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.35rem;
  scroll-snap-align: start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(27, 42, 78, 0.05);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.8rem;
  left: 1.75rem;
  color: var(--accent-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 7rem;
  font-weight: 650;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.38;
}

.testimonial-card footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.testimonial-logo {
  width: 92px;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.testimonial-logo-wide {
  width: 170px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.testimonial-navigation .icon-button {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(27, 42, 78, 0.06);
}

.testimonial-navigation .icon-button:hover,
.testimonial-navigation .icon-button:focus-visible {
  background: var(--blue-soft);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8ccba;
}

.carousel-dots span.is-active {
  width: 28px;
  background: var(--accent);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 42, 78, 0.04);
}

.faq-list summary {
  min-height: 64px;
  padding: 1rem 3.2rem 1rem 1rem;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 880px;
  padding: 0 1rem 1.2rem;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), transparent 48%),
    var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 3rem;
  align-items: start;
}

.closing-copy h2 {
  max-width: 820px;
}

.closing-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1.2rem;
  color: var(--blue);
  font-size: 1.1rem;
}

.contact-alt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.contact-alt span {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}

.form-shell {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-shell form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-shell label {
  display: grid;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-shell .full {
  grid-column: 1 / -1;
}

.form-shell input,
.form-shell textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
  color: var(--ink);
  padding: 0.8rem 0.85rem;
  outline: none;
}

.form-shell input:focus,
.form-shell textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.11);
}

.form-shell textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #111827;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  width: max-content;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
}

.site-footer p {
  max-width: 430px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.copyright {
  max-width: none;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .people-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-statement {
    font-size: 1.7rem;
  }

  .pain-grid,
  .pillar-grid,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card:nth-child(2) {
    border-right: 0;
  }

  .pillar-card:nth-child(1),
  .pillar-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .advisor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-statement {
    font-size: 1.35rem;
  }

  .statement-line-keep {
    white-space: normal;
  }

  .bridge-copy .keep-together,
  .center-cta .keep-together,
  .section-heading .keep-together {
    white-space: normal;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .team-mosaic,
  .metric-grid,
  .content-columns,
  .authority-band,
  .form-shell form {
    grid-template-columns: 1fr;
  }

  .formation-trigger {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .formation-meta {
    grid-column: 2;
    max-width: none;
    text-align: left;
  }

  .with-controls {
    align-items: start;
    flex-direction: column;
  }

  .testimonial-card {
    flex-basis: min(86vw, 420px);
  }

  .testimonial-card footer {
    grid-template-columns: 1fr;
  }

  .testimonial-logo,
  .testimonial-logo-wide {
    width: min(220px, 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .site-header {
    width: min(calc(100% - 1rem), var(--container));
  }

  .section {
    padding: 3.75rem 0;
  }

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-actions,
  .panel-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .pain-grid,
  .pillar-grid,
  .method-grid,
  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .pain-card,
  .method-card,
  .advisor-card {
    min-height: auto;
  }

  .formation-trigger {
    padding: 0.85rem;
  }

  .formation-index {
    width: 44px;
    height: 44px;
  }

  .content-columns > div {
    min-height: auto;
  }

  .contact-alt {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-alt span {
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
