@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #1e3f73;
  --green: #355c52;
  --warm: #f4f2ee;
  --cream: #ece6dc;
  --stone: #e7e1d8;
  --char: #4a4f55;
  --ink: #30363b;
  --rule: rgba(30, 63, 115, 0.16);
  --soft-rule: rgba(74, 79, 85, 0.16);
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --serif: "IBM Plex Serif", "Iowan Old Style", Cambria, Georgia, serif;
  --max: 1120px;
  --nav-max: 1320px;
  --hero-gutter: clamp(28px, 6vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--char);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

h1,
h2,
h3,
.logo {
  color: var(--navy);
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 6vw, 88px);
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3vw, 42px);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  border-bottom: 1px solid rgba(244, 242, 238, 0.1);
  background: rgba(30, 63, 115, 0.96);
  color: #fff;
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 74px;
  width: 100%;
  margin: 0;
  padding: 0 var(--hero-gutter);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.logo {
  color: #fff;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  opacity: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wordmark {
  width: 170px;
  transform: translateY(2px);
}

.wordmark img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(244, 242, 238, 0.28);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-contact {
  display: none;
}

.nav-links a,
.logo {
  opacity: 0.92;
  transition: opacity 0.18s ease;
}

.nav-links a:hover,
.logo:hover,
.nav-links .active {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
}

.btn,
.expand-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn:hover,
.expand-button:hover {
  transform: translateY(-1px);
}

.btn.green {
  background: var(--green);
}

.btn.green:hover {
  background: #2f5249;
}

.btn:not(.green):hover {
  background: #17345f;
}

.btn.hover-green:hover {
  background: var(--green);
}

.expand-button,
.btn.ghost {
  border-color: rgba(30, 63, 115, 0.24);
  background: transparent;
  color: var(--navy);
}

.expand-button:hover,
.btn.ghost:hover {
  border-color: rgba(53, 92, 82, 0.45);
  background: rgba(53, 92, 82, 0.06);
  color: var(--green);
}

.btn:focus-visible,
.expand-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.hero .btn:focus-visible,
.conversation .btn:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--warm);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 0;
}

.linkedin-link {
  position: relative;
}

.linkedin-link::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

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

  .js-reveal,
  .js-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

section {
  padding: 112px 28px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner > p {
  max-width: 760px;
  font-size: 19px;
}

.section-title {
  max-width: 780px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 760;
  line-height: 1.12;
}

.lead {
  max-width: 780px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.section-inner > .value-lead {
  max-width: none;
  font-size: 22px;
}

@media (min-width: 1080px) {
  .section-inner > .value-lead {
    white-space: nowrap;
  }
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: var(--hero-gutter) minmax(0, var(--max)) minmax(28px, 1fr);
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(14, 30, 55, 0.88) 0%, rgba(30, 63, 115, 0.74) 38%, rgba(30, 63, 115, 0.34) 58%, rgba(244, 242, 238, 0.02) 78%),
    url("images/hero-bg.jpg");
  background-image:
    linear-gradient(90deg, rgba(14, 30, 55, 0.88) 0%, rgba(30, 63, 115, 0.74) 38%, rgba(30, 63, 115, 0.34) 58%, rgba(244, 242, 238, 0.02) 78%),
    image-set(url("images/hero-bg.webp") type("image/webp"), url("images/hero-bg.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  color: var(--warm);
}

.hero-content {
  grid-column: 2;
  max-width: 560px;
  padding: 112px 0 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-content h1 {
  max-width: none;
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(58px, 6vw, 92px);
  line-height: 1.02;
  white-space: nowrap;
}

.hero-content p {
  max-width: 460px;
  margin: 0 0 16px;
  color: rgba(244, 242, 238, 0.94);
  font-size: 19px;
  line-height: 1.62;
}

.hero-content p:first-of-type {
  max-width: 500px;
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.35vw, 38px);
  font-weight: 600;
  line-height: 1.18;
}

.hero-content p:nth-of-type(2) {
  max-width: 500px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.52;
}

.desktop-break {
  display: initial;
}

.hero-content .btn {
  margin-top: 22px;
  color: #fff;
}

.editorial-text p {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.62;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  gap: 74px;
  align-items: center;
}

.focus-copy {
  min-width: 0;
}

.focus-copy .section-title {
  max-width: 620px;
}

.focus-copy .editorial-text p {
  max-width: 620px;
}

.focus-criteria {
  max-width: 660px;
  margin: 30px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.focus-criteria span {
  min-height: 86px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--green);
  background: rgba(53, 92, 82, 0.045);
  box-shadow: 0 12px 24px rgba(20, 49, 83, 0.05);
  color: var(--navy);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.focus-criteria span:nth-child(2) {
  background: rgba(53, 92, 82, 0.085);
}

.focus-criteria span:nth-child(3) {
  background: rgba(53, 92, 82, 0.125);
}

.focus-criteria span:hover {
  border-color: rgba(53, 92, 82, 0.42);
  border-top-color: var(--green);
  background: rgba(53, 92, 82, 0.17);
  box-shadow: 0 18px 34px rgba(20, 49, 83, 0.12);
  color: var(--navy);
  transform: translateY(-2px);
}

.expand-panel {
  max-height: 0;
  max-width: 820px;
  margin-top: 26px;
  overflow: hidden;
  border-left: 3px solid transparent;
  background: transparent;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.24s ease, padding 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.expand-panel.open {
  max-height: 620px;
  padding: 28px 32px;
  border-left-color: var(--green);
  background: linear-gradient(90deg, rgba(53, 92, 82, 0.08), rgba(255, 255, 255, 0.34));
  opacity: 1;
}

.expand-panel p {
  max-width: 720px;
  margin: 0 0 16px;
}

.expand-panel p:last-child {
  margin-bottom: 0;
}

.expand-panel ul {
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.expand-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 650;
}

.expand-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--green);
}

.visual-band,
.image-block {
  min-height: 390px;
  margin-top: 58px;
  position: relative;
  background-color: var(--warm);
  background-image:
    linear-gradient(90deg, rgba(244, 242, 238, 0.15), rgba(244, 242, 238, 0.04)),
    url("../assets/images/operations-bg.jpg");
  background-image:
    linear-gradient(90deg, rgba(244, 242, 238, 0.15), rgba(244, 242, 238, 0.04)),
    image-set(url("../assets/images/operations-bg.webp") type("image/webp"), url("../assets/images/operations-bg.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 40px rgba(20, 49, 83, 0.08);
}

.focus-image {
  min-height: 520px;
  margin-top: 0;
  background-image:
    linear-gradient(180deg, rgba(30, 63, 115, 0.16), rgba(30, 63, 115, 0.08)),
    linear-gradient(90deg, rgba(14, 30, 55, 0.14), rgba(244, 242, 238, 0.02)),
    url("../assets/images/focus-operations-review-brown-hand.jpg");
  background-image:
    linear-gradient(180deg, rgba(30, 63, 115, 0.16), rgba(30, 63, 115, 0.08)),
    linear-gradient(90deg, rgba(14, 30, 55, 0.14), rgba(244, 242, 238, 0.02)),
    image-set(url("../assets/images/focus-operations-review-brown-hand.webp") type("image/webp"), url("../assets/images/focus-operations-review-brown-hand.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
}

.why-built {
  padding: 88px 28px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(236, 230, 220, 0.7), rgba(244, 242, 238, 0.94)),
    var(--warm);
}

.why-built-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.why-built .section-title {
  margin-bottom: 0;
}

.why-built-copy {
  max-width: 760px;
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.why-built-copy p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.58;
}

.why-built-copy p:first-child {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.45vw, 38px);
  font-weight: 600;
  line-height: 1.18;
}

.why-built-copy p:last-child {
  margin-bottom: 0;
}

.team-why-built .why-built-copy p:first-child {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.58;
}

.team-why-built .why-built-copy p:last-child {
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.team-why-built {
  background:
    linear-gradient(180deg, rgba(53, 92, 82, 0.07), rgba(53, 92, 82, 0.03)),
    var(--cream);
}

.team-section .section-inner,
.team-why-built .section-inner {
  max-width: 1380px;
}

.team-why-built .why-built-inner {
  gap: 110px;
}

.team-why-built .why-built-copy {
  max-width: 800px;
}

.transition {
  padding: 0;
  background: var(--stone);
}

.transition-layout {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(28px, 1fr) minmax(390px, 530px) minmax(470px, 690px) minmax(28px, 1fr);
}

.transition-copy {
  grid-column: 2;
  align-self: center;
  padding: 104px 78px 104px 0;
}

.transition-copy h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 50px);
}

.transition-copy p {
  max-width: 470px;
  font-size: 19px;
}

.transition-image {
  grid-column: 3 / 5;
  background-image:
    linear-gradient(90deg, rgba(231, 225, 216, 0.64), rgba(231, 225, 216, 0.04)),
    url("../assets/images/transition-bg.jpg");
  background-image:
    linear-gradient(90deg, rgba(231, 225, 216, 0.64), rgba(231, 225, 216, 0.04)),
    image-set(url("../assets/images/transition-bg.webp") type("image/webp"), url("../assets/images/transition-bg.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
}

.approach-grid {
  margin: 40px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 0;
}

.home-ownership {
  padding-bottom: 74px;
}

.approach-card {
  min-height: 124px;
  padding: 26px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--green);
  background: rgba(53, 92, 82, 0.045);
  box-shadow: 0 16px 32px rgba(20, 49, 83, 0.06);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.approach-card:nth-child(2) {
  background: rgba(53, 92, 82, 0.085);
}

.approach-card:nth-child(3) {
  background: rgba(53, 92, 82, 0.125);
}

.approach-card:hover {
  border-color: rgba(53, 92, 82, 0.42);
  border-top-color: var(--green);
  background: rgba(53, 92, 82, 0.18);
  box-shadow: 0 20px 38px rgba(20, 49, 83, 0.13);
  color: var(--navy);
  transform: translateY(-2px);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.team-preview {
  padding-top: 86px;
}

.portrait-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.portrait {
  height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(244, 242, 238, 0.08), transparent 38%),
    #1e3f73;
  box-shadow: 0 16px 34px rgba(20, 49, 83, 0.08);
}

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

.portrait-name {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.profile-name {
  display: flex;
  align-items: center;
  gap: 14px;
}

.linkedin-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--navy);
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 7px 16px rgba(30, 63, 115, 0.14);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.linkedin-link:hover {
  background: #17345f;
  box-shadow: 0 9px 18px rgba(30, 63, 115, 0.2);
  transform: translateY(-1px);
}

.linkedin-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.conversation {
  padding: 58px 28px;
  background: var(--navy);
  color: rgba(244, 242, 238, 0.9);
  border-top: 0;
}

.conversation-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.conversation-inner p {
  max-width: 760px;
  margin: 0 0 5px;
  font-size: 19px;
  line-height: 1.48;
}

.conversation .btn {
  border-color: transparent;
  background: var(--green);
  color: #fff;
}

.conversation .btn:hover {
  border-color: transparent;
  background: #2f5249;
}

/* === Footer === */
.site-footer {
  padding: 64px 28px 28px;
  background: #162f55;
  color: rgba(244, 242, 238, 0.72);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand:not(:has(.footer-cta)) {
  gap: 14px;
}

.footer-wordmark {
  width: 160px;
  opacity: 0.94;
  transition: opacity 0.18s ease;
}

.footer-wordmark:hover {
  opacity: 1;
}

.footer-wordmark img {
  width: 100%;
  height: auto;
}

.footer-location {
  margin: 0;
  color: rgba(244, 242, 238, 0.78);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-cta {
  margin-top: 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(244, 242, 238, 0.32);
  color: rgba(244, 242, 238, 0.92);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-cta:hover {
  border-bottom-color: #fff;
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  align-content: start;
  justify-self: end;
}

.footer-nav a {
  color: rgba(244, 242, 238, 0.82);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(244, 242, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: rgba(244, 242, 238, 0.6);
  font-size: 13px;
  line-height: 1.4;
}

.footer-founders {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-founder {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(244, 242, 238, 0.82);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-founder:hover {
  color: #fff;
}

.footer-founder svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.78;
  transition: opacity 0.18s ease;
}

.footer-founder:hover svg {
  opacity: 1;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 52px 22px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-nav {
    justify-self: start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.page-hero {
  padding: 124px 0 96px;
  background: var(--warm);
  color: var(--char);
  border-bottom: 1px solid var(--rule);
}

.compact-page-hero {
  padding: 92px 0 72px;
}

.process-page-hero {
  padding: 104px 0 78px;
  background: var(--cream);
}

.page-hero .section-inner {
  width: calc(100% - (var(--hero-gutter) * 2));
  max-width: var(--max);
  margin-left: var(--hero-gutter);
  margin-right: auto;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 34px;
  color: var(--navy);
}

.process-title {
  max-width: none;
}

@media (min-width: 1080px) {
  .process-title {
    white-space: nowrap;
  }
}

.contact-title {
  max-width: none;
  white-space: nowrap;
}

.page-hero p {
  max-width: 790px;
  color: var(--char);
  font-size: 21px;
  line-height: 1.58;
}

.section-inner > .team-hero-line {
  max-width: 760px;
}

.team-page-hero {
  background: var(--warm);
  border-bottom: 0;
}

.team-page-hero .team-hero-line {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.25;
}

.team-page-hero .team-hero-subline {
  max-width: 760px;
  margin-top: 20px;
  color: var(--char);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.image-page-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  border-bottom: 0;
  background-position: center;
  background-size: cover;
  color: rgba(244, 242, 238, 0.92);
}

.image-page-hero .section-inner {
  width: calc(100% - (var(--hero-gutter) * 2));
  max-width: var(--max);
  margin-left: var(--hero-gutter);
  margin-right: auto;
  text-align: left;
}

.image-page-hero h1 {
  max-width: 620px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  color: #fff;
}

.image-page-hero p {
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  color: rgba(244, 242, 238, 0.92);
}

.ownership-page-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 30, 55, 0.9) 0%, rgba(30, 63, 115, 0.78) 38%, rgba(30, 63, 115, 0.34) 58%, rgba(244, 242, 238, 0.02) 78%),
    url("../assets/images/ownership-hero.jpg");
  background-image:
    linear-gradient(90deg, rgba(14, 30, 55, 0.9) 0%, rgba(30, 63, 115, 0.78) 38%, rgba(30, 63, 115, 0.34) 58%, rgba(244, 242, 238, 0.02) 78%),
    image-set(url("../assets/images/ownership-hero.webp") type("image/webp"), url("../assets/images/ownership-hero.jpg") type("image/jpeg"));
}

.value-section {
  background: #eee7dc;
}

.two-col,
.contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
}

.two-col p:not(.lead),
.contact-shell p:not(.lead) {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.62;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(236, 230, 220, 0.42), rgba(244, 242, 238, 0.92)),
    var(--warm);
}

.process-section {
  background: linear-gradient(180deg, var(--warm), rgba(236, 230, 220, 0.62));
}

.process-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 112px;
}

.process-copy .lead {
  font-size: 21px;
}

.process-principles {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.process-principles p {
  margin: 0;
  padding: 15px 18px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--green);
  background: rgba(53, 92, 82, 0.045);
  box-shadow: 0 12px 24px rgba(20, 49, 83, 0.05);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.process-principles p:nth-child(2) {
  background: rgba(53, 92, 82, 0.085);
}

.process-principles p:nth-child(3) {
  background: rgba(53, 92, 82, 0.125);
}

.process-principles p:hover {
  border-color: rgba(53, 92, 82, 0.42);
  border-left-color: var(--green);
  background: rgba(53, 92, 82, 0.18);
  box-shadow: 0 16px 30px rgba(20, 49, 83, 0.12);
  color: var(--navy);
  transform: translateX(2px);
}

.owner-expectations {
  margin-top: 64px;
  padding-top: 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.owner-expectations .section-title {
  margin-bottom: 0;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.expectation-grid p {
  min-height: 118px;
  margin: 0;
  padding: 24px 24px 22px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--green);
  background: rgba(53, 92, 82, 0.045);
  box-shadow: 0 14px 28px rgba(20, 49, 83, 0.055);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.48;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.expectation-grid p:nth-child(2) {
  background: rgba(53, 92, 82, 0.075);
}

.expectation-grid p:nth-child(3) {
  background: rgba(53, 92, 82, 0.105);
}

.expectation-grid p:nth-child(4) {
  background: rgba(53, 92, 82, 0.135);
}

.expectation-grid p:hover {
  border-color: rgba(53, 92, 82, 0.42);
  border-left-color: var(--green);
  background: rgba(53, 92, 82, 0.18);
  box-shadow: 0 16px 30px rgba(20, 49, 83, 0.12);
  color: var(--navy);
  transform: translateY(-2px);
}

.contact-copy {
  padding-top: 14px;
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-copy .lead {
  max-width: 560px;
}

.contact-points {
  max-width: 560px;
  margin-top: 42px;
  display: grid;
  gap: 12px;
}

.contact-points p {
  margin: 0;
  padding: 17px 20px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--green);
  background: rgba(53, 92, 82, 0.045);
  box-shadow: 0 12px 24px rgba(20, 49, 83, 0.05);
  color: var(--ink);
  font-weight: 780;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.contact-points p:nth-child(2) {
  background: rgba(53, 92, 82, 0.085);
}

.contact-points p:nth-child(3) {
  background: rgba(53, 92, 82, 0.125);
}

.contact-points p:hover {
  border-color: rgba(53, 92, 82, 0.42);
  border-left-color: var(--green);
  background: rgba(53, 92, 82, 0.18);
  box-shadow: 0 16px 30px rgba(20, 49, 83, 0.12);
  color: var(--navy);
  transform: translateX(2px);
}

.value-system {
  margin: 58px 0 44px;
}

.value-editorial {
  padding: 18px 0 0;
}

.value-sequence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-step {
  min-height: 230px;
  padding: 34px 28px 32px;
  position: relative;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--green);
  background: rgba(53, 92, 82, 0.045);
  box-shadow: 0 16px 32px rgba(20, 49, 83, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.value-step:nth-child(2) {
  background: rgba(53, 92, 82, 0.075);
}

.value-step:nth-child(3) {
  background: rgba(53, 92, 82, 0.105);
}

.value-step:nth-child(4) {
  background: rgba(53, 92, 82, 0.135);
}

.value-step:hover {
  border-color: rgba(53, 92, 82, 0.42);
  border-top-color: var(--green);
  background: rgba(53, 92, 82, 0.18);
  box-shadow: 0 20px 38px rgba(20, 49, 83, 0.13);
  color: var(--ink);
  transform: translateY(-2px);
}

.value-step h3 {
  max-width: 230px;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.12;
  transition: color 0.18s ease;
}

.value-step p {
  margin: 0;
  color: var(--char);
  font-size: 17px;
  line-height: 1.62;
  transition: color 0.18s ease;
}

.value-step:hover h3 {
  color: var(--navy);
}

.value-step:hover p {
  color: var(--char);
}

.reinforcement-line {
  max-width: none;
  margin: 24px 0 0;
  padding-left: 28px;
  border-left: 3px solid var(--green);
  color: var(--ink);
  font-size: 19px;
  font-weight: 720;
}

.philosophy-note {
  max-width: 680px;
  margin-top: 22px;
  padding-left: 24px;
  border-left: 3px solid rgba(53, 92, 82, 0.48);
  color: var(--char);
}

.approach-close {
  max-width: 720px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.approach-close p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.58;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  position: relative;
  border: 1px solid var(--rule);
  border-left: 4px solid rgba(53, 92, 82, 0.72);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(20, 49, 83, 0.045);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.accordion details::before {
  content: var(--step);
  position: absolute;
  left: 24px;
  top: 30px;
  color: rgba(53, 92, 82, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.accordion details[open] {
  border-left-color: var(--green);
  background: linear-gradient(90deg, rgba(53, 92, 82, 0.08), rgba(255, 255, 255, 0.38));
  box-shadow: 0 18px 38px rgba(20, 49, 83, 0.075);
}

.accordion details:hover {
  border-left-color: var(--navy);
  box-shadow: 0 18px 36px rgba(20, 49, 83, 0.09);
  transform: translateY(-1px);
}

.accordion summary {
  padding: 26px 30px 26px 76px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 760;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
}

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

.accordion details p {
  max-width: 760px;
  margin-top: 0;
  padding: 0 30px 28px 76px;
  font-size: 19px;
}

.profile {
  padding: 34px 0 118px;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 130px;
  align-items: start;
}

.profile .portrait {
  height: 500px;
}

.profile h2 {
  margin-bottom: 4px;
  font-family: var(--serif);
}

.profile p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.64;
}

.role {
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.role + p {
  margin-top: 0;
}

.centered-close {
  max-width: 820px;
  margin: 0;
  padding-left: 28px;
  border-left: 3px solid rgba(53, 92, 82, 0.48);
  text-align: left;
}

.centered-close .lead {
  max-width: 780px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 24px;
}

.contact-form {
  padding: 38px;
  border-top: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46));
  box-shadow: 0 24px 54px rgba(20, 49, 83, 0.08);
}

label {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(74, 79, 85, 0.22);
  border-radius: 0;
  background: #fff;
  color: var(--char);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:hover,
textarea:hover {
  border-color: rgba(53, 92, 82, 0.38);
}

input:focus,
textarea:focus {
  border-color: rgba(53, 92, 82, 0.62);
  box-shadow: 0 0 0 4px rgba(53, 92, 82, 0.09);
  outline: 0;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(74, 79, 85, 0.52);
  font-weight: 400;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #8a3a2c;
}

.contact-form .req {
  color: var(--green);
  font-weight: 800;
  margin-left: 2px;
}

@media (max-width: 1040px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    padding: 8px 0 22px;
    flex-direction: column;
    gap: 16px;
    white-space: normal;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-contact {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 620px;
    background-image:
      linear-gradient(90deg, rgba(30, 63, 115, 0.66), rgba(30, 63, 115, 0.5)),
      url("images/hero-bg.jpg");
    background-image:
      linear-gradient(90deg, rgba(30, 63, 115, 0.66), rgba(30, 63, 115, 0.5)),
      image-set(url("images/hero-bg.webp") type("image/webp"), url("images/hero-bg.jpg") type("image/jpeg"));
  }

  .transition-layout,
  .team-layout,
  .two-col,
  .focus-layout,
  .why-built-inner,
  .process-shell,
  .owner-expectations,
  .value-sequence,
  .profile,
  .contact-shell,
  .conversation-inner {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

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

  .owner-expectations {
    gap: 28px;
  }

  .value-step {
    min-height: auto;
    padding: 28px 24px;
  }

  .reinforcement-line {
    padding-left: 20px;
  }

  .focus-layout {
    gap: 42px;
  }

  .focus-criteria {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .focus-criteria span {
    min-height: 72px;
  }

  .focus-image {
    min-height: 360px;
  }

  .why-built-copy {
    padding-left: 24px;
  }

  .transition-copy {
    grid-column: 1;
    padding: 64px 28px;
  }

  .transition-image {
    grid-column: 1;
    min-height: 280px;
  }

  .approach-grid,
  .portrait-row {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 16px;
  }

  .approach-card {
    min-height: 118px;
  }

  .profile {
    padding-bottom: 72px;
  }

  .profile-name {
    justify-content: center;
    text-align: center;
  }

  .profile .portrait {
    height: min(520px, 112vw);
  }
}

@media (max-width: 560px) {
  :root {
    --hero-gutter: 22px;
  }

  section {
    padding: 72px 22px;
  }

  .why-built {
    padding: 72px 22px;
  }

  .home-ownership {
    padding-bottom: 54px;
  }

  .team-preview {
    padding-top: 64px;
  }

  .site-nav,
  .nav-inner {
    min-height: 68px;
  }

  .nav-inner {
    padding: 0 18px;
    gap: 14px;
  }

  .logo {
    font-size: 28px;
  }

  .wordmark {
    width: 146px;
  }

  .hero-content {
    padding: 82px 0 72px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 11vw, 52px);
    white-space: normal;
  }

  .hero-content p {
    font-size: 18px;
  }

  .desktop-break {
    display: none;
  }

  .page-hero {
    padding: 88px 0 72px;
  }

  .process-page-hero {
    padding: 82px 0 64px;
  }

  .page-hero p,
  .lead,
  .editorial-text p {
    font-size: 18px;
  }

  .process-title {
    white-space: normal;
  }

  .contact-title {
    white-space: normal;
  }

  .expand-panel.open {
    padding: 24px 22px;
  }

  form {
    padding: 24px;
  }
}
