:root {
  --navy: #1b2a4a;
  --blue: #1a4f8b;
  --gold: #c4880d;
  --green: #286937;
  --white: #ffffff;
  --navy-soft: rgba(27, 42, 74, 0.7);
  --line: rgba(27, 42, 74, 0.16);
  --shadow: 0 22px 54px rgba(27, 42, 74, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-mark {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  width: 168px;
}

.brand-mark img {
  height: 52px;
  object-fit: contain;
  object-position: left center;
  width: 168px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 32px);
  justify-content: flex-end;
}

.site-nav a,
.social-links a {
  color: var(--navy-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.social-links a:hover {
  color: var(--blue);
}

.section {
  overflow: hidden;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 5vw, 64px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1160px;
}

.narrow {
  max-width: 860px;
}

.section-light {
  background: var(--white);
  color: var(--navy);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  min-height: auto;
  padding-bottom: clamp(54px, 7vw, 86px);
  padding-top: clamp(58px, 7vw, 92px);
}

.hero-dark {
  background:
    linear-gradient(90deg, rgba(27, 42, 74, 0.96) 0%, rgba(27, 42, 74, 0.86) 42%, rgba(27, 42, 74, 0.34) 100%),
    url("Hero.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-dark::before {
  display: none;
}

.hero-dark::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
  display: block;
}

.hero-copy {
  max-width: 880px;
}

.eyebrow,
.section-label {
  color: var(--navy-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 7.4rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4.65rem);
  margin-bottom: 28px;
}

.section-dark h2 {
  color: var(--white);
}

h3 {
  color: var(--blue);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: none;
}

.hero-lede {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.34;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-copy > p:not(.eyebrow):not(.hero-lede) {
  color: var(--navy);
  max-width: 600px;
}

.hero-dark h1,
.hero-dark .hero-lede,
.hero-dark .hero-copy > p:not(.eyebrow):not(.hero-lede) {
  color: var(--white);
}

.hero-dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-actions .button {
  margin-top: 0;
}

.button {
  align-items: center;
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--navy);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  margin-top: 18px;
  min-height: 52px;
  min-width: 168px;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #d39a24;
  border-color: #d39a24;
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.button-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.hero-dark .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero-dark .button-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.credibility-strip {
  background: var(--white);
  border-top: 8px solid var(--gold);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 4vw, 44px) clamp(20px, 5vw, 64px);
}

.credibility-layout {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 110px minmax(0, 1fr);
}

.credibility-mark img {
  width: 110px;
}

.credibility-summary {
  color: var(--navy);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 980px;
}

.credibility-items {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
}

.credibility-items span {
  color: var(--navy);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.credibility-items span:not(:last-child)::after {
  color: var(--gold);
  content: "|";
  margin-left: 22px;
}

.founder-profile > p {
  font-size: clamp(1.14rem, 1.7vw, 1.45rem);
  line-height: 1.75;
}

.ai-edos-callout {
  background: var(--white);
  border-top: 8px solid var(--gold);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  padding-bottom: clamp(58px, 8vw, 92px);
  padding-top: clamp(58px, 8vw, 92px);
}

.ai-edos-callout h2 {
  color: var(--navy);
}

.ai-edos-callout .section-label {
  color: var(--navy-soft);
}

.ai-edos-layout {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 82px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.ai-edos-copy {
  border-left: 4px solid var(--green);
  padding-left: clamp(22px, 4vw, 42px);
}

.ai-edos-copy p {
  color: var(--navy);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 18px;
}

.ai-edos-callout .button-light {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.ai-edos-callout .button-light:hover {
  background: #d39a24;
  border-color: #d39a24;
}

.audience {
  background: var(--navy);
  border-top: 0;
  color: var(--white);
}

.audience .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.audience h2 {
  color: var(--white);
}

.audience-stack {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.audience-heading {
  max-width: 880px;
}

.audience h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  overflow-wrap: normal;
  word-break: normal;
}

.audience-copy > p {
  color: var(--white);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 940px;
}

.audience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid article {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
}

.audience-grid h3 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-grid p {
  color: var(--navy);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.services {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 360px;
  padding: 28px;
}

.service-icon {
  align-items: center;
  border: 2px solid var(--blue);
  color: var(--blue);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  margin-bottom: 26px;
  width: 40px;
}

.service-card p {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.founder {
  border-top: 8px solid var(--gold);
}

.founder-layout,
.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
}

.team-layout {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.team-heading {
  max-width: 760px;
}

.team-grid {
  display: grid;
  gap: 24px;
}

.team-member {
  align-items: start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 36px);
}

.team-photo {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.team-photo img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  width: 100%;
}

.founder-profile {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
}

.founder-photo {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.founder-photo img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  width: 100%;
}

.contact {
  padding-bottom: clamp(62px, 8vw, 96px);
}

.contact {
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--navy);
}

.contact .section-label {
  color: var(--navy-soft);
}

.contact h2 {
  color: var(--navy);
}

.contact .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.contact .button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.contact .social-links a {
  align-items: center;
  border: 2px solid var(--navy);
  color: var(--navy);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  min-width: 172px;
  padding: 14px 22px;
}

.contact .social-links a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.contact h2 {
  max-width: 780px;
}

.contact-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social-links {
  display: flex;
  gap: 28px;
}

.page-cta {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: clamp(34px, 5vw, 56px) clamp(20px, 5vw, 64px);
}

.page-cta-layout {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 1fr) auto;
}

.page-cta h2 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  margin-bottom: 0;
}

.page-cta .button {
  margin-top: 0;
}

.contact-page {
  min-height: calc(100vh - 78px);
}

.contact-page-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.contact-card {
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
  padding: clamp(28px, 4vw, 44px);
}

.contact-card .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.contact-buttons {
  flex-direction: column;
}

.contact-buttons a {
  align-items: center;
  border: 2px solid var(--white);
  color: var(--white);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  text-transform: uppercase;
}

.contact-buttons a:hover {
  background: var(--white);
  color: var(--navy);
}

.blog-hero {
  min-height: auto;
  padding-bottom: clamp(34px, 5vw, 58px);
  padding-top: clamp(44px, 6vw, 72px);
}

.about-hero {
  min-height: auto;
  padding-bottom: clamp(34px, 5vw, 58px);
  padding-top: clamp(44px, 6vw, 72px);
}

.offerings-hero {
  min-height: 62vh;
  padding-bottom: clamp(56px, 8vw, 92px);
  padding-top: clamp(72px, 9vw, 118px);
}

.offerings-hero-compact {
  min-height: auto;
  padding-bottom: clamp(28px, 4vw, 46px);
  padding-top: clamp(34px, 5vw, 56px);
}

.blog-hero-layout,
.featured-post-layout,
.offerings-hero-layout {
  align-items: end;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.blog-hero h1,
.offerings-hero h1 {
  margin-bottom: 0;
}

.blog-hero h1,
.about-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.offerings-hero-compact h1 {
  font-size: clamp(1.9rem, 3.35vw, 3.35rem);
  line-height: 1.08;
}

.about-hero h1 {
  margin-bottom: 0;
}

.blog-intro {
  border-left: 4px solid var(--green);
  color: var(--navy);
  font-size: clamp(1.02rem, 1.55vw, 1.26rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: clamp(18px, 3vw, 30px);
}

.featured-post {
  border-top: 8px solid var(--gold);
}

.featured-copy {
  border-left: 4px solid var(--gold);
  padding-left: clamp(22px, 4vw, 42px);
}

.featured-copy p:not(.post-meta) {
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.75;
}

.post-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 300px;
  padding: 28px;
}

.post-card p:last-child {
  color: var(--navy);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.post-meta {
  color: var(--navy-soft);
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-dark .post-meta {
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  color: var(--gold);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
}

.text-link:hover {
  color: #d39a24;
}

.blog-contact {
  border-top: 1px solid var(--line);
}

.team-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.founder-profile h3 {
  color: var(--white);
}

.team-member h3 {
  color: var(--white);
}

.team-member p:not(.team-role) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.founder-profile p:last-child,
.team-coming p:last-child {
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.team-coming {
  border-bottom: 1px solid var(--line);
}

.about-contact {
  border-top: 0;
}

.offerings-overview {
  border-top: 8px solid var(--gold);
}

.offerings-overview p:last-child {
  font-size: clamp(1.14rem, 1.7vw, 1.45rem);
  line-height: 1.75;
}

.offering-lanes {
  background: var(--navy);
  border-bottom: 0;
  border-top: 8px solid var(--gold);
  color: var(--white);
  padding-top: clamp(46px, 7vw, 82px);
}

.offering-lanes .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.offering-lanes h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.offering-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offering-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.library-grid .offering-card {
  min-height: 280px;
}

.library-note {
  color: rgba(255, 255, 255, 0.78);
  margin: 28px 0 0;
}

.page-evidence {
  border-bottom: 1px solid var(--line);
}

.evidence-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
}

.page-evidence h2 {
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.deliverable-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.deliverable-list li {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.deliverable-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.deliverable-list strong,
.deliverable-list span {
  display: block;
}

.deliverable-list strong {
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 6px;
}

.deliverable-list span {
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.6;
}

.experience-panel {
  background: var(--navy);
  border-radius: 8px;
  border-top: 5px solid var(--gold);
  color: var(--white);
  padding: clamp(26px, 4vw, 38px);
}

.experience-panel .post-meta {
  color: rgba(255, 255, 255, 0.7);
}

.experience-panel h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.experience-panel p,
.experience-panel blockquote {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.experience-panel blockquote {
  border-left: 3px solid var(--gold);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  margin: 24px 0;
  padding-left: 20px;
}

.experience-attribution strong,
.experience-attribution span {
  display: block;
}

.experience-attribution span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  margin-top: 3px;
}

.experience-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.86rem;
  margin-top: 24px;
  padding-top: 20px;
}

.experience-panel .text-link {
  margin-top: 18px;
}

.engagement-process {
  background: #f4f6f8;
  border-bottom: 1px solid var(--line);
}

.engagement-process h2 {
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.process-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  border-top: 3px solid var(--gold);
  padding: 22px 4px 0;
}

.process-number {
  color: var(--green);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.process-step h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.offering-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 420px;
  padding: 30px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offering-card:hover {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.offering-card-blue {
  border-top: 5px solid var(--blue);
}

.offering-card-gold {
  border-top: 5px solid var(--gold);
}

.offering-card-green {
  border-top: 5px solid var(--green);
}

.offering-card .service-icon {
  border-color: var(--gold);
  color: var(--gold);
}

.offering-card .post-meta {
  color: var(--navy-soft);
  font-weight: 800;
}

.offering-card h3 {
  color: var(--blue);
}

.offering-card p:not(.post-meta) {
  color: var(--navy);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.offering-card .text-link {
  color: var(--gold);
  margin-top: 26px;
}

.offering-card .text-link:hover {
  color: var(--blue);
}

.offering-lanes > .section-inner > .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.offering-lanes > .section-inner > .button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.offerings-contact {
  border-top: 0;
}

.offerings-contact .contact-actions p {
  color: var(--navy);
  max-width: 560px;
}

.founder-note {
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.founder-note .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.founder-note h2 {
  color: var(--white);
}

.founder-note-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
}

.founder-note-photo {
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.founder-note-photo img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  width: 100%;
}

.founder-note-layout p:not(.section-label) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.75;
  max-width: 760px;
}

.founder-note .button {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.founder-note .button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 980px) {
  .hero-grid,
  .ai-edos-layout,
  .blog-hero-layout,
  .about-hero .blog-hero-layout,
  .offerings-hero-layout,
  .featured-post-layout,
  .founder-layout,
  .founder-profile,
  .founder-note-layout,
  .team-member,
  .evidence-layout,
  .page-cta-layout,
  .contact-page-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo,
  .founder-note-photo,
  .team-photo {
    max-width: 360px;
  }

  .hero {
    min-height: auto;
  }

  .hero-dark::after {
    display: none;
  }

  .hero-dark::before {
    height: 72%;
    opacity: 0.08;
    right: -28%;
    width: 78vw;
  }

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

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

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

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

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

  .service-card {
    min-height: 300px;
  }

  .offering-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: static;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .service-card {
    min-height: 0;
  }

  .post-card {
    min-height: 0;
  }

  .social-links {
    flex-wrap: wrap;
  }

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

  .credibility-layout {
    grid-template-columns: 1fr;
  }

  .credibility-mark img {
    width: 92px;
  }

  .credibility-items span:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }
}
