@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");
:root {
  --ink: #101918;
  --navy: #0d2527;
  --teal: #0a8ba0;
  --aqua: #39c2d5;
  --gold: #d89a20;
  --cream: #f4f0e7;
  --paper: #fbfaf7;
  --line: #d9ded9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  font-weight: 600;
}
h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}
em {
  color: var(--teal);
}
a {
  color: inherit;
}
.site-header {
  height: 88px;
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(14px);
  z-index: 20;
  border-bottom: 1px solid rgba(16, 25, 24, 0.08);
}
.brand img {
  width: 176px;
  height: 66px;
  object-fit: cover;
  object-position: center;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-header nav > a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.button {
  display: inline-block;
  border: 0;
  border-radius: 2px;
  padding: 0.9rem 1.35rem;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font: 600 0.88rem "DM Sans";
  cursor: pointer;
}
.button:hover {
  background: #087586;
}
.button.small {
  padding: 0.65rem 1rem;
}
.nav-cta {
  margin-left: 0.5rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
}
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: center;
  padding: 7vw 7vw 6vw;
  background: linear-gradient(115deg, var(--paper) 70%, #e8eee9 70%);
}
.hero-copy {
  max-width: 950px;
}
.hero-copy > p:not(.eyebrow):not(.promise) {
  font-size: 1.15rem;
  max-width: 740px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.text-link {
  font-weight: 600;
  text-decoration: none;
}
.promise {
  font-size: 0.85rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.hero-mark {
  text-align: center;
  color: var(--navy);
}
.compass {
  width: 180px;
  height: 180px;
  border: 2px solid #80958e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display";
  font-size: 2rem;
  margin: auto;
  position: relative;
}
.compass:before,
.compass:after {
  content: "";
  position: absolute;
  background: #80958e;
}
.compass:before {
  height: 130%;
  width: 1px;
}
.compass:after {
  width: 130%;
  height: 1px;
}
.compass span {
  position: absolute;
  font-size: 5rem;
  color: var(--gold);
  transform: rotate(-10deg);
}
.hero-mark p {
  margin: 2rem 0 0;
  font-family: "Playfair Display";
  font-size: 1.35rem;
}
.section {
  padding: 8rem 7vw;
}
.section-intro {
  max-width: 880px;
  margin-bottom: 4rem;
}
.section-intro > p:last-child {
  font-size: 1.1rem;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.philosophy-grid article {
  padding: 2.2rem 2.2rem 0 0;
  border-right: 1px solid var(--line);
}
.philosophy-grid article + article {
  padding-left: 2.2rem;
}
.philosophy-grid article:last-child {
  border: 0;
}
.philosophy-grid span,
.steps > li > span {
  color: var(--gold);
  font-family: "Playfair Display";
  font-size: 1.35rem;
}
.categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.category {
  background: white;
  border: 0;
  min-height: 54px;
  padding: 0.7rem 0.8rem;
  text-align: center;
  cursor: pointer;
  color: var(--ink);
}
.category b,
.category small {
  display: block;
}
.category small {
  display: none;
}
.category.active,
.category:hover {
  background: var(--navy);
  color: white;
}
.category.active small,
.category:hover small {
  color: #b9ceca;
}
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.profile-card {
  background: white;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
}
.profile-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  background: #dfe9e6;
  display: grid;
  place-items: center;
  font-family: "Playfair Display";
  font-size: 4rem;
  color: var(--teal);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.profile-body {
  padding: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.profile-body .eyebrow {
  font-size: 0.62rem;
  margin: 0 0 0.25rem;
}
.profile-body h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  margin: 0 0 0.2rem;
}
.profile-title {
  color: #566462;
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0;
}
.profile-tagline {
  color: #53615f;
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.7rem 0;
}
.profile-facts {
  color: #52615e;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}
.profile-facts span {
  color: var(--gold);
  padding: 0 0.25rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.7rem 0;
}
.tags span,
.cause-list span {
  padding: 0.35rem 0.6rem;
  background: #e8f2f1;
  font-size: 0.75rem;
}
.rate {
  font-weight: 600;
  margin-top: auto;
}
.profile-card .rate {
  font-size: 0.92rem;
  margin: 0.15rem 0 0.8rem;
}
.profile-card .rate small {
  display: none;
}
.rate small {
  display: block;
  font-weight: 400;
  color: #697572;
}
.modal-profile-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
.profile-brand {
  color: var(--teal);
  font-weight: 600;
}
.modal-rate {
  background: #e8f2f1;
  padding: 0.9rem 1rem;
  min-width: 205px;
  font-weight: 700;
}
.modal-rate small {
  display: block;
  color: #60706d;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.4;
}
.modal-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.modal-content blockquote {
  border-left: 3px solid var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  margin: 1.5rem 0;
  padding-left: 1rem;
}
.modal-content li {
  margin-bottom: 0.4rem;
}
.profile-meta {
  color: #52615e;
  font-size: 0.88rem;
}
.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-card .button.small {
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
}
.profile-card .text-button {
  font-size: 0.78rem;
}
.talent {
  padding-top: 2.4rem;
}
.talent .section-intro {
  margin-bottom: 1.25rem;
}
.talent .section-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
  margin: 0.45rem 0 0.6rem;
}
.talent .section-intro > p:last-child {
  font-size: 1rem;
  margin-bottom: 0;
}
.text-button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--teal);
  font-weight: 600;
  cursor: pointer;
}
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  border: 1px dashed #aebcb7;
  background: white;
}
.anchor-icon {
  font-size: 3rem;
  color: var(--gold);
}
.how {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.light .eyebrow {
  color: var(--aqua);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid #385052;
}
.steps li p {
  color: #b9cac7;
  margin-bottom: 0;
}
.invitation-note {
  grid-column: 1/-1;
  border: 1px solid #385052;
  padding: 1rem;
  text-align: center;
  color: #c3d2cf;
}
.impact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  align-items: center;
  background: var(--cream);
}
.impact-number {
  font-family: "Playfair Display";
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.8;
  color: var(--gold);
}
.impact-number span {
  font-size: 0.3em;
}
.cause-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.impact blockquote {
  font-family: "Playfair Display";
  font-size: 1.5rem;
  margin: 2rem 0 0;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.pricing-copy {
  font-size: 1.1rem;
}
.pricing-copy ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.pricing-copy li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.pricing-copy li b {
  color: var(--gold);
  font-size: 1.5rem;
  margin-right: 0.6rem;
}
.fine-print {
  font-size: 0.8rem;
  color: #697572;
}
.connect {
  background: #e5efed;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
}
.connect-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}
.connect-copy > a {
  color: var(--teal);
  font-weight: 600;
}
.connect form {
  background: white;
  padding: 2.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid label {
  font-size: 0.76rem;
  font-weight: 600;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem;
  border: 1px solid #cbd4d1;
  background: white;
  font: inherit;
}
.wide {
  grid-column: 1/-1;
}
.consent {
  display: flex;
  align-items: flex-start;
  font-weight: 400 !important;
}
.consent input {
  width: auto;
  margin: 0.25rem 0.6rem 0 0;
}
.form-status {
  margin: 1rem 0 0;
  color: var(--teal);
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.connect form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}
footer {
  background: #091b1c;
  color: #d1dfdc;
  padding: 4rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: end;
}
footer img {
  width: 200px;
}
footer p {
  grid-column: 1/-1;
  font-family: "Playfair Display";
  font-size: 1.5rem;
}
footer div {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
footer a {
  text-decoration: none;
  font-size: 0.85rem;
}
footer button,
.inline-legal-link {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
footer button {
  font-size: 0.85rem;
  text-decoration: none;
}
footer a:hover,
footer button:hover,
.inline-legal-link:hover {
  color: #66c7d4;
}
footer small {
  text-align: right;
}
dialog {
  border: 0;
  padding: 0;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  box-shadow: 0 30px 90px #0005;
}
dialog::backdrop {
  background: #0a1716cc;
}

/* v1.22: legal notices and policies */
.profile-directory-disclaimer {
  margin: 0.65rem 0 0;
  padding: 0.45rem 0.7rem;
  border-left: 2px solid var(--teal);
  color: #667370;
  font-size: 0.68rem;
  line-height: 1.45;
  max-width: 1100px;
}
.legal-modal {
  width: min(900px, calc(100vw - 2rem));
  max-width: 900px;
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
}
.legal-content {
  position: relative;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2.2rem 2.5rem 2.6rem;
  background: #fff;
}
.legal-content h2 {
  margin: 0.15rem 0 0.25rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.legal-content h3 {
  margin: 1.45rem 0 0.45rem;
  font-size: 1.05rem;
}
.legal-content p,
.legal-content li {
  color: #3f4d4b;
  font-size: 0.92rem;
  line-height: 1.65;
}
.legal-content ul {
  padding-left: 1.25rem;
}
.legal-date {
  margin-top: 0;
  color: var(--teal) !important;
  font-weight: 700;
}
.legal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.modal-content {
  padding: 2.5rem;
  position: relative;
}
.modal-close {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  border: 0;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 1.5rem 5vw;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    background: var(--paper);
  }
  .hero-mark {
    display: none;
  }
  .philosophy-grid,
  .profiles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .categories {
    grid-template-columns: 1fr 1fr;
  }
  .how,
  .impact,
  .pricing,
  .connect {
    grid-template-columns: 1fr;
  }
  .connect-copy {
    position: static;
  }
  .impact-number {
    font-size: 10rem;
  }
  .section {
    padding: 6rem 6vw;
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 145px;
    height: 54px;
  }
  .site-header nav {
    top: 76px;
  }
  .hero {
    min-height: calc(100vh - 76px);
    padding: 5rem 6vw;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 4.5rem 6vw;
  }
  .talent {
    padding-top: 2rem;
  }
  .philosophy-grid,
  .profiles-grid,
  .categories {
    grid-template-columns: 1fr;
  }
  .categories {
    grid-template-columns: 1fr 1fr;
  }
  .category:last-child {
    grid-column: 1 / -1;
  }
  .profile-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 0.85rem;
  }
  .profile-photo {
    width: 88px;
    height: 88px;
  }
  .philosophy-grid article,
  .philosophy-grid article + article {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
  .modal-profile-head,
  .modal-profile-grid {
    display: block;
  }
  .modal-rate {
    margin-top: 1rem;
  }
  .connect form {
    padding: 1.3rem;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer small {
    text-align: left;
  }
  .legal-content {
    padding: 1.25rem 1.15rem 1.8rem;
  }
  .legal-content h2 {
    font-size: 2.3rem;
  }
  .profile-directory-disclaimer {
    font-size: 0.65rem;
  }
}

/* v1.11: service-led profile card content */
.profile-card .profile-summary {
  margin: 0 0 0.65rem;
  color: #53615f;
  font-size: 0.78rem;
  line-height: 1.45;
}
.profile-card .profile-help-label {
  margin: 0;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.profile-card .profile-facts {
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Screen-fit presentation for primary menu destinations */
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--navy);
  white-space: nowrap;
}
.hero-values-image {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: 0 24px 65px rgba(5, 29, 43, 0.2);
}
.impact-heading,
.impact blockquote {
  grid-column: 1 / -1;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 25, 24, 0.15);
  border: 1px solid rgba(16, 25, 24, 0.15);
}
.impact-subsection {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.58);
}
.impact-subsection > span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}
.impact-stories {
  border-left: 0;
}

@media (min-width: 1001px) {
  .site-header {
    height: 102px;
    padding: 8px 4vw;
  }
  .brand img {
    width: 124px;
    height: 82px;
    object-fit: contain;
  }
  .site-header nav {
    gap: clamp(0.7rem, 1.15vw, 1.35rem);
    white-space: nowrap;
  }
  .site-header nav > a,
  .nav-dropdown > a {
    font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  }
  .nav-cta {
    padding: 0.8rem 1rem;
  }
  .hero,
  .philosophy,
  .founder,
  .how,
  .impact,
  .pricing,
  .connect {
    min-height: calc(100vh - 102px);
    scroll-margin-top: 102px;
  }
  .section {
    padding: clamp(2.5rem, 5vh, 4.5rem) 7vw;
  }
  .hero {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
    gap: 4vw;
    padding: clamp(2.5rem, 5vh, 4.5rem) 7vw;
  }
  .hero h1 {
    font-size: clamp(4rem, 5.6vw, 6.35rem);
    margin-bottom: 1.6rem;
  }
  .hero-copy > p:not(.eyebrow):not(.promise) {
    font-size: clamp(1rem, 1.13vw, 1.2rem);
    line-height: 1.65;
  }
  .hero-actions {
    margin: 1.55rem 0;
  }
  .philosophy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .philosophy .section-intro {
    max-width: 1100px;
    margin-bottom: clamp(1.7rem, 4vh, 3rem);
  }
  .philosophy .section-intro h2 {
    font-size: clamp(3rem, 4.5vw, 5.2rem);
  }
  .philosophy-grid article {
    padding-top: 1.5rem;
  }
  .philosophy-grid article p {
    line-height: 1.65;
  }
  .founder {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    gap: 5vw;
  }
  .founder-photo {
    max-width: 390px;
    justify-self: center;
  }
  .founder-copy h2 {
    font-size: clamp(3rem, 4vw, 4.5rem);
  }
  .founder-credential {
    margin-bottom: 1rem;
  }
  .founder-copy > p:not(.eyebrow):not(.founder-title):not(.founder-credential) {
    font-size: clamp(0.88rem, 0.96vw, 1rem);
    line-height: 1.55;
    margin-bottom: 0.85rem;
  }
  .founder-copy blockquote {
    margin: 1rem 0;
    font-size: 1.15rem;
  }
  .how {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6vw;
    align-content: center;
  }
  .how .section-intro {
    margin-bottom: 0;
  }
  .how .section-intro h2 {
    font-size: clamp(3rem, 4vw, 4.8rem);
  }
  .steps li {
    padding: clamp(0.65rem, 1.5vh, 1rem) 0;
  }
  .steps li h3 {
    margin-bottom: 0.15rem;
  }
  .steps li p {
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .invitation-note {
    margin-bottom: 0;
  }
  .impact {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.9rem, 2vh, 1.4rem);
    align-content: center;
  }
  .impact-heading h2 {
    font-size: clamp(2.8rem, 3.9vw, 4.4rem);
    margin-bottom: 0;
  }
  .impact-subsection h3 {
    margin: 0.1rem 0 0.35rem;
  }
  .impact-subsection p {
    margin-bottom: 0;
    font-size: clamp(0.84rem, 0.92vw, 0.98rem);
    line-height: 1.5;
  }
  .impact blockquote {
    margin: 0;
    font-size: 1.25rem;
  }
  .connect {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 5vw;
    align-items: center;
  }
  .connect-copy {
    position: static;
  }
  .connect-copy h2 {
    font-size: clamp(2.8rem, 3.7vw, 4.3rem);
  }
  .connect form {
    padding: 1.4rem;
  }
  .form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.85rem;
  }
  .wide {
    grid-column: 1 / -1;
  }
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    margin-top: 0.25rem;
    padding: 0.55rem 0.65rem;
    line-height: 1.3;
  }
  .form-grid textarea {
    min-height: 68px;
    max-height: 86px;
  }
  .connect form > .button {
    margin-top: 0.8rem;
  }
}

@media (max-width: 1420px) and (min-width: 1001px) {
  .brand span {
    font-size: 1.65rem;
  }
  .site-header {
    padding-inline: 2vw;
  }
  .site-header nav {
    gap: 0.65rem;
  }
}

@media (max-width: 1000px) {
  .brand span {
    font-size: 1.55rem;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .brand {
    gap: 0.45rem;
  }
  .brand img {
    width: 98px;
    height: 68px;
    object-fit: contain;
  }
  .brand span {
    font-size: 1.25rem;
  }
}

/* Final viewport refinements based on the live desktop review */
.brand span {
  color: #078eaa;
}

@media (min-width: 1001px) {
  .philosophy {
    padding-top: clamp(1.8rem, 3.2vh, 2.8rem);
    padding-bottom: clamp(1.8rem, 3.2vh, 2.8rem);
  }
  .philosophy .section-intro {
    margin-bottom: clamp(1rem, 2vh, 1.6rem);
  }
  .philosophy .section-intro h2 {
    max-width: 1180px;
    font-size: clamp(2.8rem, 3.65vw, 4.35rem);
    line-height: 1.02;
    margin-bottom: 0;
  }
  .philosophy-grid article,
  .philosophy-grid article + article {
    padding-top: 1.15rem;
    padding-bottom: 0;
  }
  .philosophy-grid article h3 {
    margin-bottom: 0.65rem;
    font-size: 1.3rem;
  }
  .philosophy-grid article p {
    margin-bottom: 0;
    font-size: clamp(0.9rem, 1vw, 1.02rem);
    line-height: 1.5;
  }

  .founder {
    padding-top: clamp(1.7rem, 3vh, 2.5rem);
    padding-bottom: clamp(1.7rem, 3vh, 2.5rem);
    grid-template-columns: minmax(245px, 0.5fr) minmax(0, 1.5fr);
    gap: 4vw;
  }
  .founder-photo {
    width: min(100%, 335px);
    max-width: 335px;
  }
  .founder-copy h2 {
    font-size: clamp(2.7rem, 3.5vw, 3.9rem);
    margin-bottom: 0.25rem;
  }
  .founder-title {
    font-size: 1.3rem;
    margin-bottom: 0.15rem;
  }
  .founder-credential {
    font-size: 0.92rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .founder-copy > p:not(.eyebrow):not(.founder-title):not(.founder-credential) {
    font-size: clamp(0.82rem, 0.88vw, 0.94rem);
    line-height: 1.43;
    margin-bottom: 0.6rem;
  }
  .founder-copy blockquote {
    margin: 0.7rem 0;
    padding-left: 0.9rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .founder .button {
    padding: 0.7rem 1.05rem;
  }

  .impact {
    padding-top: clamp(1.6rem, 2.8vh, 2.4rem);
    padding-bottom: clamp(1.6rem, 2.8vh, 2.4rem);
    gap: clamp(0.7rem, 1.4vh, 1rem);
  }
  .impact-heading h2 {
    font-size: clamp(2.5rem, 3.35vw, 3.85rem);
    line-height: 1;
  }
  .impact-grid {
    gap: 0.85rem;
    border: 0;
    background: transparent;
  }
  #impact .impact-subsection {
    margin: 0;
    padding: clamp(1rem, 1.7vh, 1.35rem) 1.4rem;
    border: 1px solid rgba(16, 25, 24, 0.16);
    border-left: 3px solid var(--teal);
    background: rgba(255, 255, 255, 0.72);
  }
  #impact .impact-subsection h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
  }
  #impact .impact-subsection p {
    font-size: clamp(0.82rem, 0.9vw, 0.94rem);
    line-height: 1.42;
  }
  #impact .cause-list {
    gap: 0.35rem;
  }
  #impact .cause-list span {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  .impact blockquote {
    font-size: 1.05rem;
    line-height: 1.35;
  }
}

/* v1.2: tighter Founder and Explore Talent screens */
@media (min-width: 1001px) {
  #philosophy,
  #founder,
  #talent,
  #how,
  #impact,
  #pricing,
  #connect {
    scroll-margin-top: 102px;
  }

  #founder {
    padding: 1.2rem 7vw;
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1.58fr);
    gap: 3.4vw;
  }
  #founder .founder-photo {
    width: 285px;
    max-width: 285px;
  }
  #founder .founder-photo:before {
    inset: -10px 10px 10px -10px;
  }
  #founder .founder-copy h2 {
    font-size: clamp(2.45rem, 3vw, 3.35rem);
  }
  #founder .founder-title {
    font-size: 1.15rem;
  }
  #founder .founder-credential {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
  }
  #founder .founder-copy > p:not(.eyebrow):not(.founder-title):not(.founder-credential) {
    font-size: clamp(0.76rem, 0.8vw, 0.86rem);
    line-height: 1.35;
    margin-bottom: 0.42rem;
  }
  #founder .founder-copy blockquote {
    margin: 0.5rem 0;
    font-size: 0.92rem;
    line-height: 1.3;
  }
  #founder .button {
    padding: 0.58rem 0.9rem;
    font-size: 0.78rem;
  }

  #talent {
    min-height: calc(100vh - 102px);
    padding: 1.6rem 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #talent .section-intro {
    margin-bottom: 1rem;
  }
  #talent .section-intro h2 {
    font-size: clamp(2.75rem, 3.75vw, 4.25rem);
    margin-bottom: 0.55rem;
  }
  #talent .section-intro > p:last-child {
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  #talent .categories {
    margin-bottom: 1rem;
  }
  #talent .category {
    padding: 0.85rem 1rem;
    min-height: 86px;
  }
  #talent .category b {
    font-size: 0.9rem;
  }
  #talent .category small {
    margin-top: 0.25rem;
    font-size: 0.72rem;
  }
  #talent .empty-state {
    padding: 1.5rem 1.5rem;
  }
  #talent .empty-state .anchor-icon {
    font-size: 2rem;
    line-height: 1;
  }
  #talent .empty-state h3 {
    margin: 0.45rem 0;
  }
  #talent .empty-state p {
    margin-bottom: 0.8rem;
  }
}

/* Readability and full-logo refinements */
.values-compass {
  width: 285px;
  height: 285px;
  margin: auto;
  position: relative;
  border: 2px solid #718c84;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.95) 0 26%,
    rgba(224, 238, 233, 0.72) 27% 58%,
    rgba(255, 255, 255, 0.28) 59% 100%
  );
  box-shadow:
    0 0 0 10px rgba(113, 140, 132, 0.1),
    0 18px 55px rgba(13, 37, 39, 0.15);
}
.values-compass:before,
.values-compass:after {
  content: "";
  position: absolute;
  z-index: 0;
  background: linear-gradient(90deg, transparent, #8ba099, transparent);
}
.values-compass:before {
  width: 82%;
  height: 1px;
  left: 9%;
  top: 50%;
}
.values-compass:after {
  width: 1px;
  height: 82%;
  left: 50%;
  top: 9%;
  background: linear-gradient(180deg, transparent, #8ba099, transparent);
}
.anchor-centre {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 2.9rem;
  line-height: 1;
  box-shadow: 0 0 0 7px rgba(216, 154, 32, 0.16);
  animation: anchor-float 4s ease-in-out infinite;
}
.compass-value {
  position: absolute;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.value-talent {
  left: 35px;
  top: 48px;
}
.value-trust {
  right: 40px;
  top: 48px;
}
.value-connection {
  left: 24px;
  bottom: 48px;
}
.value-purpose {
  right: 28px;
  bottom: 48px;
}
.hero-mark .values-caption {
  margin: 2rem 0 0;
  color: #567069;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes anchor-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, -54%) rotate(2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .anchor-centre {
    animation: none;
  }
}
.nav-dropdown {
  position: relative;
}
.site-header nav {
  gap: 0.85rem;
}
.site-header nav > a,
.nav-dropdown > a {
  white-space: nowrap;
}
.nav-dropdown > a {
  display: block;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
}
.nav-dropdown > a span {
  color: var(--teal);
  margin-left: 0.2rem;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 205px;
  padding: 0.7rem 0;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(13, 37, 39, 0.13);
}
.dropdown-menu a {
  display: block;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #e8f2f1;
  color: var(--teal);
}
.dropdown-menu.dropdown-right {
  left: auto;
  right: -1rem;
}
.nav-cta {
  white-space: nowrap;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.impact-subsection {
  scroll-margin-top: 125px;
  margin-top: 1.5rem;
}
.impact-subsection h3 {
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}
.impact-subsection p {
  font-size: 1.02rem;
  text-align: justify;
  text-justify: inter-word;
}
.impact-stories {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.45);
}
.philosophy-grid article p,
.founder-copy > p:not(.eyebrow):not(.founder-title):not(.founder-credential),
.steps li p,
.impact > div > p,
.pricing-copy > p,
.connect-copy > p {
  text-align: justify;
  text-justify: inter-word;
}
.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 7vw;
  align-items: center;
  background: #e8efec;
}
.founder-photo {
  position: relative;
  max-width: 560px;
}
.founder-photo:before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid #8ba29a;
  z-index: 0;
}
.founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.founder-copy h2 {
  margin-bottom: 0.55rem;
}
.founder-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.founder-credential {
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.founder-copy > p:not(.eyebrow):not(.founder-title):not(.founder-credential) {
  font-size: 1.04rem;
}
.founder-copy blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin: 2rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}
.linkedin-button {
  margin-top: 0.2rem;
}
html {
  font-size: 17px;
}
body {
  line-height: 1.72;
}
.site-header {
  height: 102px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 220px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}
.site-header nav > a {
  font-size: 0.98rem;
}
.nav-cta {
  font-size: 0.95rem !important;
}
.eyebrow {
  font-size: 0.8rem;
}
.hero-copy > p:not(.eyebrow):not(.promise) {
  font-size: 1.23rem;
  line-height: 1.75;
}
.promise {
  font-size: 0.96rem;
}
.section-intro > p:last-child,
.pricing-copy {
  font-size: 1.16rem;
}
.philosophy-grid article p,
.steps li p,
.impact > div > p,
.connect-copy > p {
  font-size: 1.04rem;
}
.category b {
  font-size: 1rem;
}
.category small {
  font-size: 0.82rem;
}
.profile-title,
.profile-body dd {
  font-size: 1rem;
}
.tags span,
.cause-list span {
  font-size: 0.82rem;
}
.fine-print {
  font-size: 0.9rem;
}
.form-grid label {
  font-size: 0.84rem;
}
.invitation-note {
  font-size: 1rem;
}
footer img {
  width: 220px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1000px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown > a {
    font-size: 1.05rem;
  }
  .dropdown-menu {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.35rem 0 0 1rem;
  }
  .dropdown-menu a {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    color: #5e6d69;
  }
  .founder {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    max-width: 440px;
  }
  .site-header nav {
    top: 102px;
  }
  .site-header nav > a {
    font-size: 1.05rem;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 16px;
  }
  .philosophy-grid article p,
  .founder-copy > p:not(.eyebrow):not(.founder-title):not(.founder-credential),
  .steps li p,
  .impact > div > p,
  .impact-subsection p,
  .pricing-copy > p,
  .connect-copy > p {
    text-align: left;
  }
  .founder-photo:before {
    inset: -10px 10px 10px -10px;
  }
  .founder-title {
    font-size: 1.35rem;
  }
  .site-header {
    height: 88px;
  }
  .brand img {
    width: 175px;
    height: 70px;
  }
  .site-header nav {
    top: 88px;
  }
  .hero-copy > p:not(.eyebrow):not(.promise) {
    font-size: 1.1rem;
  }
}

.submission-confirmation {
  min-height: 430px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid #b9d3cc;
  background: linear-gradient(145deg, #ffffff 0%, #edf6f3 100%);
  outline: none;
}
.confirmation-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 2rem;
  font-weight: 600;
}
.submission-confirmation h3 {
  margin-bottom: 0.7rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1.12;
}
.submission-confirmation > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 1.5rem;
}
@media (max-width: 650px) {
  .submission-confirmation {
    min-height: 360px;
    padding: 2rem 1.4rem;
  }
}

/* v1.10: concise talent directory and profile cards */
.profile-card {
  display: block;
  padding: 1rem;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.profile-photo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
}
.profile-identity h3 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
  line-height: 1.15;
}
.profile-identity .profile-title {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.3;
}
.profile-card .profile-body {
  padding: 0.7rem 0 0;
}
.profile-card .profile-facts {
  margin: 0;
}
.profile-card .tags {
  margin: 0.6rem 0;
}
.profile-card .tags span {
  padding: 0.28rem 0.46rem;
  font-size: 0.68rem;
}
.profile-card .rate {
  margin: 0.1rem 0 0.6rem;
  font-size: 0.88rem;
}
.profile-card .button.small {
  padding: 0.5rem 0.6rem;
}
@media (min-width: 1001px) {
  #talent {
    padding: 1.2rem 7vw;
    justify-content: flex-start;
  }
  #talent .section-intro {
    margin-bottom: 0.75rem;
  }
  #talent .section-intro h2 {
    margin: 0.2rem 0 0.35rem;
    font-size: clamp(2.1rem, 2.8vw, 3.1rem);
  }
  #talent .categories {
    margin-bottom: 1rem;
  }
  #talent .category {
    min-height: 50px;
    padding: 0.5rem 0.65rem;
  }
  #talent .category b {
    font-size: 0.84rem;
  }
  #talent .category small {
    display: none;
  }
}
@media (max-width: 650px) {
  .profile-photo {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }
  .profile-identity h3 {
    font-size: 1.12rem;
  }
}

/* v1.16: lift and compact the desktop talent directory header */
@media (min-width: 1001px) {
  #talent {
    padding: 0.65rem 7vw 1rem;
  }
  #talent .section-intro {
    margin-bottom: 0.45rem;
  }
  #talent .section-intro .eyebrow {
    margin-bottom: 0.25rem;
  }
  #talent .section-intro h2 {
    margin: 0 0 0.2rem;
    font-size: clamp(1.95rem, 2.35vw, 2.6rem);
    line-height: 1.05;
  }
  #talent .section-intro > p:last-child {
    font-size: 0.88rem;
    line-height: 1.35;
  }
  #talent .categories {
    margin-bottom: 0.7rem;
  }
  #talent .category {
    min-height: 44px;
    padding: 0.4rem 0.55rem;
  }
  #talent .category b {
    font-size: 0.8rem;
  }
}

/* v1.24: header logo alignment and tighter brand spacing */
@media (min-width: 1001px) {
  .site-header {
    padding-left: 7vw;
    padding-right: 4vw;
  }
  .brand {
    gap: 0.45rem;
  }
  .brand img {
    width: 110px;
    height: 84px;
  }
}

@media (max-width: 650px) {
  .brand {
    gap: 0.3rem;
  }
  .brand img {
    width: 91px;
    height: 70px;
  }
}

/* v1.18: dedicated expert-search screen */
.expert-finder {
  min-height: calc(100vh - 110px);
  padding: 2rem 7vw 3rem;
  align-content: start;
  background: #f7f5ef;
  scroll-margin-top: 105px;
}
.expert-finder .section-intro {
  max-width: 880px;
  margin-bottom: 1rem;
}
.expert-finder .section-intro h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: 1.05;
}
.expert-finder .section-intro > p:last-child {
  max-width: 760px;
}
.expert-search {
  margin: 0 0 0.55rem;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(190px, 0.35fr) auto auto;
  gap: 0.7rem;
  align-items: end;
  border: 1px solid #cbd8d5;
  background: #eef5f2;
}
.expert-search label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
}
.expert-search input,
.expert-search select {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border: 1px solid #b8c8c4;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.expert-search .button {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  white-space: nowrap;
}
.expert-search .search-clear {
  min-height: 42px;
}
.search-status {
  min-height: 1.2em;
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
}
.search-results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.search-results-grid:empty {
  display: none;
}
.search-empty {
  margin-top: 0.5rem;
}
@media (max-width: 1000px) {
  .expert-finder {
    padding: 2rem 6vw 3rem;
  }
  .expert-search {
    grid-template-columns: 1fr 1fr;
  }
  .expert-search .search-keyword {
    grid-column: 1 / -1;
  }
  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .expert-finder {
    min-height: auto;
    padding: 1.5rem 6vw 2.5rem;
  }
  .expert-finder .section-intro h2 {
    font-size: 2.15rem;
  }
  .expert-search {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }
  .expert-search .search-keyword {
    grid-column: 1;
  }
  .expert-search .button,
  .expert-search .search-clear {
    width: 100%;
  }
  .search-results-grid {
    grid-template-columns: 1fr;
  }
}
