/* About Us page styles, scoped to .page-template-template-about-us.
   Header, footer, and nav styles come from service-standard.css */

body.page-template-template-about-us {
  --black: #000000;
  --navy: #001d2e;
  --navy-700: #00131c;
  --navy-600: #00263c;
  --gold: #d3ac2e;
  --gold-deep: #9a7d24;
  --blue: #338ef6;
  --blue-link: #2272cc;
  --white: #ffffff;
  --ink: #3d4450;
  --mute: rgba(255, 255, 255, 0.72);
  --hair: rgba(255, 255, 255, 0.14);
  --hair-d: rgba(0, 29, 46, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Roboto", Helvetica, Arial, sans-serif;
  --mono: "Roboto Mono", ui-monospace, monospace;
}
.page-template-template-about-us * {
  box-sizing: border-box;
}
html:has(.page-template-template-about-us) {
  scroll-behavior: smooth;
}
body.page-template-template-about-us {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.page-template-template-about-us img {
  max-width: 100%;
  display: block;
}
.page-template-template-about-us a {
  color: var(--blue-link);
}
.page-template-template-about-us h1,
.page-template-template-about-us h2,
.page-template-template-about-us h3,
.page-template-template-about-us h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.14;
  margin: 0;
  text-wrap: balance;
}
.page-template-template-about-us p {
  margin: 0 0 1.15em !important;
}
.page-template-template-about-us .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.page-template-template-about-us .eyebrow {
  font-family: var(--mono) !important;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.page-template-template-about-us .light .eyebrow {
  color: var(--gold-deep);
}
.page-template-template-about-us .btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 17px 32px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.18s ease;
}
.page-template-template-about-us .btn-gold {
  background: var(--gold);
  color: var(--navy-700);
}
.page-template-template-about-us .btn-gold:hover {
  background: #e2bb3a;
  color: var(--navy-700);
}
.page-template-template-about-us .btn-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}
.page-template-template-about-us .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.page-template-template-about-us :focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- hero ---------- */
.page-template-template-about-us .hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 150px 0 80px;
}
.page-template-template-about-us .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-template-template-about-us .hero-media img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 14%,
    #000 34%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 14%,
    #000 34%,
    #000 100%
  );
}
.page-template-template-about-us .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 29, 46, 0.94) 0%,
    rgba(0, 29, 46, 0.86) 34%,
    rgba(0, 29, 46, 0.62) 62%,
    rgba(0, 29, 46, 0.38) 100%
  );
}
.page-template-template-about-us .hero-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 29, 46, 0.55) 0%,
    rgba(0, 29, 46, 0) 26%,
    rgba(0, 29, 46, 0) 62%,
    rgba(0, 29, 46, 0.82) 100%
  );
}
.page-template-template-about-us .hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-template-template-about-us .hero-copy {
  max-width: 720px;
}
.page-template-template-about-us .hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.page-template-template-about-us .hero .lede,
.page-template-template-about-us .hero-lede p {
  font-size: 17.5px;
  color: var(--mute);
  max-width: 520px;
  margin-bottom: 1.05em;
}
.page-template-template-about-us .hero .lede:last-of-type,
.page-template-template-about-us .hero-lede p:last-child {
  margin-bottom: 0;
}
.page-template-template-about-us .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.page-template-template-about-us .hero-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 38px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.page-template-template-about-us .hero-strip > div {
  flex: 0 0 auto;
}
.page-template-template-about-us .hs-num {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}
.page-template-template-about-us .hs-word {
  font-size: 26px;
  white-space: nowrap;
}
.page-template-template-about-us .hs-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 9px;
  white-space: nowrap;
}

/* ---------- sections ---------- */
.page-template-template-about-us section {
  padding: 100px 0;
}
.page-template-template-about-us .light {
  background: var(--white);
  color: var(--ink);
}
.page-template-template-about-us .light h2,
.page-template-template-about-us .light h3,
.page-template-template-about-us .light h4 {
  color: var(--navy);
}
.page-template-template-about-us .dark {
  background: var(--navy);
}
.page-template-template-about-us .darker {
  background: var(--navy-700);
}
.page-template-template-about-us .sec-head {
  max-width: 860px;
  margin-bottom: 56px;
}
.page-template-template-about-us .sec-head h2 {
  font-size: clamp(30px, 3.7vw, 44px);
  margin-bottom: 18px;
}
.page-template-template-about-us .sec-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1em;
}
.page-template-template-about-us .sec-head p:last-child {
  margin-bottom: 0 !important;
}
.page-template-template-about-us .sec-head .t-close {
  font-family: var(--serif) !important;
  font-size: 22px;
  color: var(--white);
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.page-template-template-about-us .light .sec-head p {
  color: #5a6270;
}

/* ---------- person, now leading ---------- */
.page-template-template-about-us .person h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 22px;
}
.page-template-template-about-us .person p {
  font-size: 17.5px;
  color: #4b535f;
}
.page-template-template-about-us .person-top {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 56px;
  align-items: stretch;
}
.page-template-template-about-us .person-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.page-template-template-about-us .person-figure img {
  width: 100%;
  flex: 1 1 0;
  height: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid var(--hair-d);
}
.page-template-template-about-us .person-figure figcaption {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #78818f;
  margin-top: 14px;
  line-height: 1.7;
}
.page-template-template-about-us .person-intro p:last-child {
  margin-bottom: 0;
}
.page-template-template-about-us .person-rest p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .page-template-template-about-us .person-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-template-template-about-us .person-figure {
    max-width: 340px;
  }
  .page-template-template-about-us .person-figure img {
    aspect-ratio: 3/4;
    flex: 0 0 auto;
    height: auto;
  }
}
.page-template-template-about-us .pullquote {
  margin: 36px 0;
  padding: 30px 34px;
  background: #f4f7fa;
  border-left: 3px solid var(--gold);
}
.page-template-template-about-us .pullquote p {
  margin: 0 0 16px;
  font-family: var(--serif) !important;
  font-size: 21px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
}
.page-template-template-about-us .pullquote cite {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-style: normal;
}

/* ---------- SIGNATURE: personal reel ---------- */
.page-template-template-about-us .reel {
  background: var(--navy);
  padding: 96px 0 88px;
}
.page-template-template-about-us .reel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.page-template-template-about-us .reel-head h2 {
  font-size: clamp(28px, 3.3vw, 40px);
  max-width: 640px;
}
.page-template-template-about-us .reel-head p {
  color: var(--mute);
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 17px;
}
.page-template-template-about-us .reel-nav {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.page-template-template-about-us .reel-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
}
.page-template-template-about-us .reel-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}
.page-template-template-about-us .reel-btn:disabled {
  opacity: 0.28;
  cursor: default;
}
.page-template-template-about-us .reel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.page-template-template-about-us .reel-track::-webkit-scrollbar {
  height: 3px;
}
.page-template-template-about-us .reel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}
.page-template-template-about-us .reel-track::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
}
.page-template-template-about-us .slide {
  flex: 0 0 340px;
  scroll-snap-align: start;
  margin: 0;
}
.page-template-template-about-us .slide .shot {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-600);
  border: 1px solid var(--hair);
}
.page-template-template-about-us .slide .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.page-template-template-about-us .slide:hover .shot img {
  transform: scale(1.04);
}
.page-template-template-about-us .slide .cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 14px;
  line-height: 1.6;
}
.page-template-template-about-us .slide .cap b {
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 700px) {
  .page-template-template-about-us .slide {
    flex: 0 0 78vw;
  }
  .page-template-template-about-us .reel-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- credentials, compressed ---------- */
.page-template-template-about-us .cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}
.page-template-template-about-us .cred {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--hair-d);
}
.page-template-template-about-us .cred-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 6px;
}
.page-template-template-about-us .cred h3 {
  font-size: 19px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.page-template-template-about-us .cred p {
  font-size: 15.5px;
  color: #4b535f;
  margin: 0 0 10px;
}
.page-template-template-about-us .cred a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-link);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 114, 204, 0.35);
}
.page-template-template-about-us .cred a:hover {
  border-bottom-color: var(--blue-link);
}
.page-template-template-about-us .cred span.static {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b939f;
}
@media (max-width: 900px) {
  .page-template-template-about-us .cred-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---------- team ---------- */
.page-template-template-about-us .t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.page-template-template-about-us .t-card:last-child,
.page-template-template-about-us .t-card:nth-child(2) {
  border-bottom: 1px solid var(--hair);
}
.page-template-template-about-us .t-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--hair);
}
.page-template-template-about-us .t-card img {
  width: 168px;
  height: 168px;
  flex: 0 0 168px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 0 0 1px rgba(211, 172, 46, 0.28),
    0 0 0 9px rgba(211, 172, 46, 0.06);
}
.page-template-template-about-us .t-body {
  min-width: 0;
}
.page-template-template-about-us .t-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  line-height: 1.7;
  font-weight: 500;
}
.page-template-template-about-us .t-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  line-height: 1.15;
}
.page-template-template-about-us .t-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-block;
}
@media (max-width: 980px) {
  .page-template-template-about-us .t-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 620px;
  }
}
@media (max-width: 430px) {
  .page-template-template-about-us .t-card {
    gap: 22px;
    padding: 30px 0;
  }
  .page-template-template-about-us .t-card img {
    width: 124px;
    height: 124px;
    flex: 0 0 124px;
    box-shadow:
      0 0 0 1px rgba(211, 172, 46, 0.28),
      0 0 0 6px rgba(211, 172, 46, 0.06);
  }
  .page-template-template-about-us .t-name {
    font-size: 21px;
  }
  .page-template-template-about-us .t-role {
    font-size: 9px;
    letter-spacing: 0.16em;
    margin-bottom: 9px;
  }
  .page-template-template-about-us .t-meta {
    font-size: 9px;
    margin-top: 11px;
    padding-top: 9px;
  }
}

/* ---------- faq ---------- */
.page-template-template-about-us .faq {
  max-width: 900px;
}
.page-template-template-about-us .faq details {
  border-bottom: 1px solid var(--hair-d);
  padding: 6px 0;
}
.page-template-template-about-us .faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
}
.page-template-template-about-us .faq summary::-webkit-details-marker {
  display: none;
}
.page-template-template-about-us .faq summary h3 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500 !important;
}
.page-template-template-about-us .faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 22px;
  font-family: var(--mono);
  font-size: 24px;
  color: var(--gold-deep);
  line-height: 1;
}
.page-template-template-about-us .faq details[open] summary::after {
  content: "\2212";
}
.page-template-template-about-us .faq .ans {
  padding: 0 44px 26px 0;
  color: #4b535f;
  font-size: 16.5px;
}
.page-template-template-about-us .faq .ans p:last-child {
  margin-bottom: 0;
}
.page-template-template-about-us .faq .ans a {
  color: var(--blue-link);
}

/* ---------- cta ---------- */
.page-template-template-about-us .cta {
  background: var(--navy);
  text-align: center;
}
.page-template-template-about-us .cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 20px;
}
.page-template-template-about-us .cta p {
  color: var(--mute);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 34px !important;
}
.page-template-template-about-us .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .page-template-template-about-us section {
    padding: 70px 0;
  }
  .page-template-template-about-us .reel {
    padding: 70px 0 64px;
  }
  .page-template-template-about-us .hero {
    min-height: auto;
    padding: 60px 0 76px;
  }
  .page-template-template-about-us .hero-strip {
    gap: 22px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1100px) {
  /* same treatment as desktop: whole band, bottom anchored, nothing cropped */
  .page-template-template-about-us .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(0, 29, 46, 0.92) 0%,
      rgba(0, 29, 46, 0.84) 38%,
      rgba(0, 29, 46, 0.58) 100%
    );
  }
  .page-template-template-about-us .hero-scrim::after {
    background: linear-gradient(
      180deg,
      rgba(0, 29, 46, 0.3) 0%,
      rgba(0, 29, 46, 0) 26%,
      rgba(0, 29, 46, 0) 62%,
      rgba(0, 29, 46, 0.7) 100%
    );
  }
}
@media (max-width: 700px) {
  .page-template-template-about-us .btn {
    width: 100%;
    text-align: center;
  }
  .page-template-template-about-us .hero {
    padding: 60px 0 0;
    min-height: auto;
  }
  .page-template-template-about-us .hero .lede,
  .page-template-template-about-us .hero-lede p {
    max-width: none;
  }
  /* clear the copy off the band so all five faces read */
  .page-template-template-about-us .hero-strip {
    margin-bottom: calc(100vw / 2.4 + 18px);
  }
  .page-template-template-about-us .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(0, 29, 46, 0.94) 0%,
      rgba(0, 29, 46, 0.9) 55%,
      rgba(0, 29, 46, 0.34) 100%
    );
  }
  .page-template-template-about-us .hero-scrim::after {
    background: linear-gradient(
      180deg,
      rgba(0, 29, 46, 0.28) 0%,
      rgba(0, 29, 46, 0) 22%,
      rgba(0, 29, 46, 0) 78%,
      rgba(0, 29, 46, 0.45) 100%
    );
  }
}
@media (prefers-reduced-motion: reduce) {
  html:has(.page-template-template-about-us) {
    scroll-behavior: auto;
  }
  .page-template-template-about-us .reel-track {
    scroll-behavior: auto;
  }
  .page-template-template-about-us .slide .shot img {
    transition: none;
  }
  .page-template-template-about-us .slide:hover .shot img {
    transform: none;
  }
}
