:root {
  --ink: #111111;
  --charcoal: #191919;
  --soft-black: #23211e;
  --ivory: #f7f3eb;
  --paper: #fffdf7;
  --line: #dbc9aa;
  --gold: #c0932e;
  --gold-bright: #efc86a;
  --teal: #145f62;
  --teal-deep: #0e3d42;
  --muted: #665f54;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px max(28px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: rgba(17, 17, 17, 0.84);
  border-bottom: 1px solid rgba(239, 200, 106, 0.26);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  font-size: 0.88rem;
  font-weight: 800;
}

.brand-link img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(239, 200, 106, 0.48);
  border-radius: 50%;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-header nav a,
.brand-link,
.button {
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 136px max(28px, calc((100vw - 1180px) / 2)) 66px;
  color: var(--paper);
  background:
    linear-gradient(104deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.95) 48%, rgba(192, 147, 46, 0.92) 48.2%, rgba(192, 147, 46, 0.92) 49.6%, rgba(245, 242, 236, 0.94) 49.8%, rgba(245, 242, 236, 0.72) 100%),
    var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 82%);
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  right: max(28px, calc((100vw - 1080px) / 2));
  top: 132px;
  width: 390px;
  opacity: 0.2;
  filter: saturate(0.95) contrast(1.06);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.eyebrow,
.section-kicker,
.profile-role {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 770px;
  margin-bottom: 22px;
  font-size: 3.85rem;
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.14;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 32px;
  color: rgba(255, 253, 247, 0.84);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 900;
}

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

.button.primary {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--white);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(239, 200, 106, 0.52);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.hero-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.hero-values p {
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(239, 200, 106, 0.54);
}

.hero-values strong,
.hero-values span {
  display: block;
}

.hero-values strong {
  color: var(--gold-bright);
  font-size: 0.95rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-values span {
  color: rgba(255, 253, 247, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section,
.positioning,
.contact {
  padding: 92px max(28px, calc((100vw - 1180px) / 2));
}

.section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.executive-grid,
.challenge-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 72px;
  align-items: start;
}

.positioning {
  background:
    linear-gradient(90deg, var(--paper), #f2eee8),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.lead-panel {
  display: grid;
  gap: 18px;
}

.promise-card {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 24px 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(41, 35, 25, 0.08);
}

.promise-card strong {
  color: #9b6a13;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.promise-card span {
  color: var(--ink);
  line-height: 1.65;
}

.proof-band {
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(239, 200, 106, 0.16);
  border-bottom: 1px solid rgba(239, 200, 106, 0.16);
  background: var(--soft-black);
  color: var(--paper);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  min-width: 0;
  min-height: 152px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  border-right: 1px solid rgba(239, 200, 106, 0.16);
  text-align: center;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 1.48rem;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  max-width: 310px;
  color: rgba(255, 253, 247, 0.76);
  line-height: 1.55;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  max-width: 660px;
}

.interventions {
  background: var(--ivory);
}

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

.pillar-card,
.process-step,
.challenge-list article,
.difference-panel,
.profile-card,
.commitment-grid article,
.contact-panel {
  border-radius: 8px;
}

.pillar-card {
  min-height: 430px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(41, 35, 25, 0.07);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
  font-weight: 900;
}

.pillar-card h3 {
  min-height: 72px;
  color: var(--ink);
}

.pillar-card p {
  margin-bottom: 10px;
  color: #9b6a13;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar-card ul,
.profile-list {
  margin: 0;
  padding-left: 18px;
}

.pillar-card li,
.profile-list li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.process-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.97), rgba(14, 61, 66, 0.94)),
    var(--teal-deep);
}

.process-section p {
  color: rgba(255, 253, 247, 0.76);
}

.process-intro {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.process-step {
  padding: 22px;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(239, 200, 106, 0.2);
}

.process-step span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-weight: 900;
}

.process-step h3 {
  color: var(--paper);
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.outcome-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(239, 200, 106, 0.28);
  border-radius: 8px;
}

.outcome-strip strong,
.outcome-strip span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.08);
}

.outcome-strip strong {
  color: var(--gold-bright);
  text-transform: uppercase;
}

.outcome-strip span {
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.challenge-list {
  display: grid;
  gap: 12px;
}

.challenge-list article {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.challenge-list h3 {
  color: #9b6a13;
}

.challenge-list p,
.difference-panel p {
  margin-bottom: 0;
}

.difference-panel {
  position: sticky;
  top: 104px;
  padding: 30px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(35, 33, 30, 0.96)),
    var(--soft-black);
  border: 1px solid rgba(239, 200, 106, 0.24);
}

.difference-panel p {
  color: rgba(255, 253, 247, 0.76);
}

.difference-flow {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.difference-flow span {
  padding: 14px 16px;
  color: var(--paper);
  background: rgba(255, 253, 247, 0.08);
  border-left: 3px solid var(--gold-bright);
  font-weight: 800;
}

.team {
  background: #f1eadc;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.profile-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(41, 35, 25, 0.08);
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  align-items: start;
}

.profile-card.featured-profile {
  border-color: rgba(192, 147, 46, 0.68);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(192, 147, 46, 0.54);
  border-radius: 8px;
}

.profile-role {
  color: #9b6a13;
}

.profile-subtitle {
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

.profile-card h3 {
  margin-bottom: 10px;
  color: var(--teal-deep);
  font-size: 1.72rem;
}

.profile-card h4 {
  margin: 0 0 12px;
  color: #9b6a13;
  font-size: 0.9rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.profile-card p {
  font-size: 0.96rem;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, 0.8fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.profile-detail-grid section {
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(192, 147, 46, 0.28);
}

.profile-detail-grid blockquote {
  margin: 0;
  padding: 24px;
  color: var(--ink);
  background: #f9f3e7;
  border: 1px solid rgba(192, 147, 46, 0.56);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
}

.commitment {
  background: var(--ivory);
}

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

.commitment-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.commitment-grid h3 {
  color: #9b6a13;
}

.commitment-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.98), rgba(14, 61, 66, 0.93)),
    var(--soft-black);
}

.contact p {
  color: rgba(255, 253, 247, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 30px;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(239, 200, 106, 0.28);
  font-style: normal;
}

.contact-panel strong {
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.contact-panel span {
  margin-bottom: 8px;
  color: rgba(255, 253, 247, 0.76);
}

.contact-panel a {
  width: fit-content;
  color: var(--paper);
  font-weight: 900;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--gold-bright);
}

@media (max-width: 1120px) {
  .pillar-grid,
  .process-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pillar-card h3 {
    min-height: 0;
  }

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

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

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 14px 22px;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
  }

  .brand-link {
    min-width: 210px;
  }

  .hero {
    background:
      linear-gradient(118deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.9) 72%, rgba(14, 61, 66, 0.76)),
      var(--charcoal);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-mark {
    width: 310px;
    top: 150px;
  }

  .executive-grid,
  .challenge-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .difference-panel {
    position: static;
  }

  .proof-inner {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 0;
    padding: 26px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 200, 106, 0.16);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: block;
    min-height: 0;
  }

  .brand-link {
    min-width: 0;
    margin-bottom: 12px;
  }

  .site-header nav {
    justify-content: flex-start;
    gap: 10px 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
    padding: 174px 20px 54px;
  }

  .hero-mark {
    right: -66px;
    top: 188px;
    width: 260px;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-values,
  .pillar-grid,
  .process-grid,
  .outcome-strip,
  .profile-detail-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .profile-intro {
    grid-template-columns: 1fr;
  }

  .profile-detail-grid section {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(192, 147, 46, 0.28);
  }

  .profile-photo {
    max-width: 360px;
  }

  .section,
  .positioning,
  .contact {
    padding: 66px 20px;
  }

  .difference-panel,
  .contact-panel {
    padding: 24px;
  }
}
