:root {
  --ocean: #164c63;
  --ocean-2: #2b6f86;
  --harbour: #7db8c7;
  --ink: #1c2d35;
  --muted-ink: #5e6f76;
  --stone: #e9e5dc;
  --mist: #f8f7f3;
  --white: #ffffff;
  --line: #dcd8cf;
  --rust: #c96b4b;
  --gold: #d5b86d;
  --shadow: 0 24px 70px rgba(22, 76, 99, 0.13);
  --max: 1180px;
  --serif: "Iowan Old Style", Charter, Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: var(--sans);
  background: var(--mist);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

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

.hidden-field {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(245, 243, 239, 0.92);
  border-bottom: 1px solid rgba(216, 211, 202, 0.75);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(10, 49, 66, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  min-width: 15.5rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--ocean);
  color: var(--white);
  border-radius: 0.42rem;
  font-family: var(--serif);
  font-size: 1.52rem;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: var(--muted-ink);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-cta {
  color: var(--ocean) !important;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(201, 107, 75, 0.38) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.35rem;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
}

.hero h1,
.page-hero h1,
.about-hero h1,
.contact-copy h1,
.thanks-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 520;
  line-height: 1.06;
  color: var(--ocean);
}

.hero h1 {
  max-width: 14.5ch;
  font-size: clamp(3.05rem, 6.4vw, 6.15rem);
}

.lead {
  max-width: 45rem;
  margin: 1.5rem 0 0;
  color: var(--muted-ink);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #a9553c;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.hero-actions,
.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-weight: 720;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--ocean);
  color: var(--white);
}

.button.primary.light {
  background: var(--white);
  color: var(--ocean);
}

.button.secondary {
  color: var(--ocean);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(2.5rem, 5vw, 4.25rem) 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-strip div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.proof-strip dt {
  color: var(--ocean);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.proof-strip dd {
  margin: 0.35rem 0 0;
  color: var(--muted-ink);
  font-size: 0.86rem;
}

.hero-portrait {
  position: relative;
  margin: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #e7f1f4);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(125, 184, 199, 0.22), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(22, 76, 99, 0.07));
}

.hero-portrait img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.muted {
  max-width: none;
  background: var(--white);
}

.muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.intro-grid,
.how-work {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.audience-band {
  background:
    linear-gradient(135deg, rgba(238, 248, 250, 0.96), rgba(255, 253, 248, 0.92));
  border-top: 1px solid rgba(212, 229, 232, 0.9);
  border-bottom: 1px solid rgba(212, 229, 232, 0.9);
}

.audience-band .v4-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.4rem, 5.4vw, 5.4rem) clamp(1rem, 4vw, 3rem);
}

h2 {
  margin: 0;
  color: var(--ocean);
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  font-weight: 720;
  line-height: 1.12;
}

h3 {
  color: var(--ocean);
  line-height: 1.2;
}

.rich-text p,
.narrative p {
  margin: 0 0 1.2rem;
  color: var(--muted-ink);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.situation-heading {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.situation-heading h2 {
  max-width: 58rem;
}

.section-heading.split {
  display: flex;
  max-width: none;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.text-link {
  color: var(--ocean);
  font-weight: 720;
  text-underline-offset: 0.35rem;
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 2.5rem auto 0;
  gap: 1rem;
  border: 0;
}

.challenge-list article {
  min-height: 13rem;
  padding: 1.35rem;
  background: #f7fbfc;
  border: 1px solid #d5e4e8;
  border-radius: 0.45rem;
}

.situation-list article {
  padding: 1.5rem;
}

.challenge-list h3 {
  margin: 0;
  color: var(--ocean);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 760;
}

.challenge-list p {
  margin: 1.25rem 0 0;
  color: var(--muted-ink);
  font-size: 1rem;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 15rem;
  padding: 1.5rem;
  background: var(--mist);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.service-card h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--muted-ink);
}

.image-band {
  height: clamp(20rem, 42vw, 34rem);
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.quote-panel {
  background: linear-gradient(135deg, var(--ocean), var(--ocean-2));
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 0.5rem;
}

.quote-panel p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--harbour);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--ocean), var(--ocean-2));
  color: var(--white);
}

.cta-section > * {
  max-width: var(--max);
}

.cta-section h2 {
  max-width: 62rem;
  color: var(--white);
}

.cta-section p:not(.eyebrow) {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.78);
  background: #071f2a;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.page-hero.compact {
  max-width: 62rem;
  margin-left: max(0px, calc((100% - var(--max)) / 2));
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 54rem;
  margin: 1.5rem 0 0;
  color: var(--muted-ink);
  font-size: 1.18rem;
}

.service-detail-list {
  display: grid;
  gap: 1px;
  padding-top: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0.9rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.service-detail h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.service-kicker,
.outcome {
  color: var(--ocean);
  font-weight: 720;
}

.detail-body p,
.detail-body li {
  color: var(--muted-ink);
  font-size: 1.03rem;
}

.detail-body details {
  margin: 1.25rem 0;
  border: 1px solid #d5e4e8;
  border-radius: 0.45rem;
  background: #f7fbfc;
}

.detail-body summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--ocean);
  font-weight: 760;
}

.expanded-proof {
  padding: 0 1.1rem 1rem;
  border-top: 1px solid #d5e4e8;
}

.expanded-proof h3 {
  margin: 1rem 0 0.5rem;
}

.detail-body ul {
  columns: 2;
  gap: 2rem;
  padding-left: 1.1rem;
}

.outcome {
  margin-top: 1.6rem;
}

.experience-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.experience-hero img {
  height: min(38vw, 28rem);
  min-height: 20rem;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  padding: 0;
}

.stats-grid article {
  min-height: 12rem;
  padding: 1.35rem;
  background: var(--white);
}

.stats-grid strong {
  display: block;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.stats-grid span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted-ink);
}

.timeline-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline-list article {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.4rem;
  background: var(--mist);
}

.timeline-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.timeline-list p {
  margin: 0;
  color: var(--muted-ink);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 4vw, 3rem) 0;
}

.about-hero h1,
.contact-copy h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.about-copy {
  padding-bottom: clamp(2rem, 6vw, 5rem);
}

.about-copy p:not(.eyebrow):not(.pronunciation),
.contact-copy p {
  max-width: 50rem;
  color: var(--muted-ink);
  font-size: 1.18rem;
}

.pronunciation {
  color: var(--rust);
  font-weight: 720;
}

.about-hero figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: var(--shadow);
}

.about-hero img {
  width: 100%;
}

.narrative {
  max-width: 58rem;
}

.narrative p {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 7vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.direct-contact a {
  color: var(--ocean);
  font-weight: 720;
  text-underline-offset: 0.35rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: var(--ocean);
  color: var(--white) !important;
  border-radius: 0.25rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
}

.contact-social {
  width: 2.25rem;
  height: 2.25rem;
}

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

.support-note {
  max-width: 54rem;
  margin: 2rem 0 0;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ocean);
  font-size: 0.9rem;
  font-weight: 720;
}

.contact-form span {
  color: var(--muted-ink);
  font-weight: 520;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  padding: 0.9rem;
  color: var(--ink);
  font: inherit;
  background: var(--mist);
}

.contact-form textarea {
  resize: vertical;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.thanks-card {
  max-width: 42rem;
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.thanks-card p {
  color: var(--muted-ink);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    gap: 0.35rem;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    background: var(--ocean);
    border: 0;
    border-radius: 0.3rem;
  }

  .nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: fixed;
    inset: 4.8rem 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .nav-cta {
    padding: 0.9rem;
    text-decoration: none;
  }

  .hero,
  .experience-hero,
  .about-hero,
  .contact-layout,
  .intro-grid,
  .how-work,
  .experience-columns,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-copy h1 {
    max-width: none;
  }

  .hero-portrait {
    aspect-ratio: 1.02;
  }

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

  .section-heading.split,
  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-body ul {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.8vw, 3.2rem);
  }

  .page-hero h1,
  .about-hero h1,
  .contact-copy h1 {
    font-size: clamp(2.6rem, 11vw, 3.45rem);
  }

  .proof-strip,
  .challenge-list,
  .service-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline-list article {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .challenge-list article,
  .service-card,
  .stats-grid article {
    min-height: auto;
  }

  .page-hero.compact {
    margin-left: 0;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

/* Version 4: refined Version 1 with warmer, more human energy */
.v4 {
  --ocean: #154f63;
  --ocean-2: #2f7a90;
  --harbour: #8bc6d2;
  --ink: #19333c;
  --muted-ink: #546c74;
  --mist: #fbfaf6;
  --stone: #eef3f1;
  --line: #d4e5e8;
  --rust: #c76548;
  --gold: #dec477;
  --shadow: 0 22px 54px rgba(21, 79, 99, 0.12);
  background:
    linear-gradient(180deg, #ffffff 0, #fbfaf6 30rem),
    var(--mist);
}

.v4 .site-header {
  background: rgba(255, 253, 248, 0.94);
  border-bottom-color: rgba(212, 229, 232, 0.9);
}

.v4 .brand {
  gap: 0.85rem;
}

.v4 .brand-mark {
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, var(--ocean), var(--ocean-2));
  box-shadow: 0 10px 26px rgba(21, 79, 99, 0.2);
}

.v4 .brand-mark::after {
  content: "";
  position: absolute;
  right: -0.25rem;
  bottom: 0.42rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--rust);
  border-radius: 999px;
}

.v4 .brand small {
  color: #6a7e84;
}

.v4 .nav-cta {
  text-decoration-color: rgba(199, 101, 72, 0.62) !important;
}

.v4 .site-nav a[aria-current="page"] {
  position: relative;
  color: var(--ocean);
  font-weight: 760;
}

.v4 .site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 3px;
  background: var(--rust);
  border-radius: 999px;
}

.v4 .site-nav .nav-cta[aria-current="page"] {
  text-decoration: none !important;
}

.v4 .hero {
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.82fr);
  padding-top: clamp(2rem, 4.4vw, 4.4rem);
}

.v4-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.9rem, 5.4vw, 5.25rem);
}

.v4 .lead {
  color: #4f6870;
}

.founder-proof {
  display: grid;
  gap: 1rem;
  align-self: center;
  padding-top: clamp(4.5rem, 6vw, 5.8rem);
}

.v4 .hero-portrait {
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 101, 72, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff, #e9f4f6);
}

.v4 .hero-portrait img {
  object-position: center 28%;
}

.connected-proof {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0;
  background: transparent;
  border: 0;
}

.connected-proof div {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.32fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  box-shadow: 0 10px 26px rgba(21, 79, 99, 0.06);
}

.connected-proof dt {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
}

.connected-proof dd {
  margin: 0;
  line-height: 1.42;
}

.v4 .section {
  padding-top: clamp(3.6rem, 6vw, 6rem);
  padding-bottom: clamp(3.6rem, 6vw, 6rem);
}

.v4 .page-hero,
.v4 .about-hero,
.v4 .contact-layout {
  padding-top: clamp(3.4rem, 6vw, 5.8rem);
}

.v4 .eyebrow {
  color: var(--rust);
}

.v4 .muted {
  background:
    linear-gradient(180deg, #eef8fa, #ffffff);
}

.v4 .challenge-list {
  gap: 1rem;
}

.v4 .challenge-list article,
.v4 .service-card,
.v4-service-detail,
.principle-grid article {
  border-color: var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 12px 28px rgba(21, 79, 99, 0.05);
}

.v4 .challenge-list article {
  min-height: 12rem;
  background: #ffffff;
  border-top: 4px solid rgba(199, 101, 72, 0.72);
}

.v4 .service-grid {
  gap: 0.85rem;
  background: transparent;
  border: 0;
}

.v4 .service-card {
  min-height: 11.4rem;
  background: #ffffff;
  border: 1px solid var(--line);
}

.v4 .service-card h3 {
  font-family: var(--sans);
  font-size: 1.23rem;
  font-weight: 780;
}

.v4 .quote-panel {
  background:
    linear-gradient(135deg, rgba(21, 79, 99, 0.98), rgba(47, 122, 144, 0.96));
}

.v4 .quote-panel p {
  font-family: var(--sans);
  font-weight: 720;
}

.v4 .cta-section {
  background:
    linear-gradient(135deg, rgba(21, 79, 99, 0.96), rgba(47, 122, 144, 0.96));
}

.v4 .site-footer {
  background: #0a2c38;
}

.v4-page-hero {
  padding-bottom: clamp(2.4rem, 4vw, 3.4rem);
}

.services-intro {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.services-intro .section-heading {
  margin-bottom: 0;
}

.services-intro .section-heading p:not(.eyebrow) {
  max-width: 54rem;
  margin: 1.25rem 0 0;
  color: var(--muted-ink);
  font-size: 1.13rem;
}

.v4-service-list {
  gap: 1rem;
  padding-top: clamp(2rem, 4vw, 3rem);
}

.v4-service-detail {
  scroll-margin-top: 7rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: #ffffff;
  border: 1px solid var(--line);
}

.v4-service-detail h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.support-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.3rem 0;
}

.support-columns h3 {
  margin: 0 0 0.55rem;
  font-size: 0.96rem;
  font-weight: 820;
}

.v4 .detail-body .support-columns ul {
  columns: 1;
  margin: 0;
}

.proof-note {
  margin-top: 1rem;
  padding-top: 1rem;
  color: var(--ocean) !important;
  border-top: 1px solid var(--line);
  font-weight: 760;
}

.experience-accordion {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #f8fcfd;
}

.experience-accordion summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  color: var(--ocean);
  font-weight: 780;
}

.experience-accordion ul {
  margin: 0;
  padding: 0 1.1rem 1rem 2rem;
  columns: 1;
}

.v4-about-hero {
  align-items: start;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.v4-about-hero figure {
  border-radius: 0.9rem;
  max-height: clamp(25rem, 34vw, 31rem);
}

.v4-about-hero img {
  height: clamp(25rem, 34vw, 31rem);
  object-fit: cover;
  object-position: center 8%;
}

.v4-narrative {
  max-width: 43rem;
  margin-top: clamp(-19rem, -20vw, -13rem);
  margin-left: max(0px, calc((100% - var(--max)) / 2));
  margin-right: auto;
  padding-top: 0;
}

.v4-narrative p {
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
}

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

.principle-grid article {
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid var(--line);
}

.principle-grid h3 {
  margin: 0 0 0.7rem;
  color: var(--ocean);
}

.principle-grid p {
  margin: 0;
  color: var(--muted-ink);
}

.v4-why {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.v4-why .rich-text .button {
  margin-top: 0.5rem;
}

.v4-value-grid {
  gap: 0.85rem;
  background: transparent;
  border: 0;
  counter-reset: value-card;
}

.v4-value-grid article {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  min-height: 12.5rem;
  box-shadow: 0 14px 34px rgba(21, 79, 99, 0.06);
}

.v4-value-grid article::before {
  counter-increment: value-card;
  content: "0" counter(value-card);
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.1rem;
  color: var(--rust);
  background: rgba(199, 101, 72, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
}

.v4-value-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rust), var(--harbour));
}

.v4-value-grid strong {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 800;
}

.v4 .timeline-list {
  gap: 0.9rem;
  background: transparent;
  border: 0;
}

.v4 .timeline-list article {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 250, 0.72));
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 14px 34px rgba(21, 79, 99, 0.06);
}

.v4 .timeline-list article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rust), var(--harbour));
}

.v4 .timeline-list h3 {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.7vw, 1.32rem);
  font-weight: 800;
}

.v4 .timeline-list p {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.v4-contact h1 {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 4.8vw, 4.8rem);
  font-weight: 520;
  max-width: 11.5ch;
}

.v4-experience-proof {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.v4-experience-proof .check-list {
  max-width: var(--max);
}

.v4-work-principles .section-heading {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.v4 .contact-form {
  border-color: var(--line);
  border-radius: 0.75rem;
}

.v4 .contact-form input,
.v4 .contact-form textarea {
  background: #fffdf8;
  border-color: var(--line);
}

@media (max-width: 900px) {
  .v4 .hero,
  .support-columns,
  .v4-why {
    grid-template-columns: 1fr;
  }

  .founder-proof {
    padding-top: 0;
  }

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

  .v4-service-detail {
    scroll-margin-top: 6.2rem;
  }

  .v4-about-hero figure {
    max-height: none;
  }

  .v4-about-hero img {
    height: auto;
    object-fit: initial;
    object-position: center;
  }

  .v4-narrative {
    max-width: 68rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(3.6rem, 6vw, 6rem);
  }
}

@media (max-width: 620px) {
  .connected-proof div,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .v4 .hero {
    padding-top: 2.7rem;
  }

  .founder-proof {
    padding-top: 0;
  }

  .v4-service-detail {
    scroll-margin-top: 5.8rem;
  }
}
