:root {
  --red: #e6314a;
  --gray: #595c5f;
  --ink: #292b2d;
  --white: #fff;
  --cream: #fbf8f5;
  --rose: #f7eeee;
  --line: rgba(230, 49, 74, 0.22);
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  background: #fff;
}
a {
  color: inherit;
}
.site-header {
  height: 94px;
  max-width: var(--max);
  margin: auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.brand img {
  display: block;
  width: auto;
  max-width: 250px;
  max-height: 60px;
}
.site-header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.site-header nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
}
.site-header nav a:hover {
  color: var(--red);
}
.nav-contact {
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}
.menu {
  display: none;
  background: 0;
  border: 0;
  font: inherit;
  font-weight: 700;
}
.hero {
  height: min(790px, calc(100vh - 94px));
  min-height: 650px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 22, 24, 0.85) 0%,
    rgba(20, 22, 24, 0.62) 44%,
    rgba(20, 22, 24, 0.08) 75%
  );
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  top: 50%;
  transform: translateY(-50%);
  width: min(900px, 68vw);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--red);
  margin: 0 0 24px;
}
.eyebrow.light {
  color: #fff;
}
.hero h1 {
  font-size: clamp(43px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 900px;
}
.hero h1 span,
.hero h1 em {
  display: block;
}
.hero h1 span:nth-child(2) {
  color: #fff;
}
.hero h1 em {
  color: var(--red);
  font-weight: 400;
  font-style: normal;
  font-size: 0.82em;
  margin-top: 10px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 21px;
  max-width: 650px;
  margin: 30px 0;
}
.text-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid;
  padding: 7px 0;
}
.light-link {
  color: #fff;
}
.text-link span {
  color: var(--red);
  font-size: 25px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 120px 30px;
}
.opening {
  max-width: none;
  padding-left: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  padding-right: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 80px;
  background: linear-gradient(120deg, #fff 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
}
.side-note {
  margin: 0;
  color: #8a8c8f;
  font-size: 14px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.opening h2,
.services h2,
.leadership h2,
.about h2,
.contact h2 {
  font-size: clamp(39px, 4.6vw, 65px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 45px;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.two-columns p {
  margin: 0;
}
.orientation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #f8f5f3 0%, #eee6e3 100%);
  color: var(--ink);
  min-height: 700px;
}
.orientation-image {
  min-height: 700px;
  overflow: hidden;
  background: #fff;
}
.orientation-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.orientation-copy {
  position: relative;
  padding: 90px max(40px, calc((100vw - var(--max)) / 2));
  padding-left: 8vw;
}
.orientation-copy::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 34px;
  background: var(--red);
}
.orientation-copy .eyebrow {
  color: var(--red);
}
.orientation-copy h2 {
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.1;
  margin: 0 0 35px;
  letter-spacing: -0.035em;
}
.orientation-copy p:not(.eyebrow) {
  font-size: 19px;
}
.orientation-copy ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
}
.orientation-copy li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(230, 49, 74, 0.22);
}
.services {
  max-width: none;
  padding-left: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  padding-right: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 110px;
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 62%, rgba(247, 238, 238, .72) 100%);
}
.services-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}
.services-intro > p:last-child {
  font-size: 19px;
}
.service-lines article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.service-lines article:last-child {
  border-bottom: 1px solid var(--line);
}
.service-lines span {
  color: var(--red);
  font-weight: 800;
}
.service-lines h3 {
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 7px;
}
.service-lines p {
  margin: 0;
  color: var(--gray);
}
.vision {
  height: 620px;
  position: relative;
  overflow: hidden;
}
.vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.vision:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 17, 18, 0.74),
    rgba(16, 17, 18, 0.08)
  );
}
.vision-overlay {
  position: absolute;
  z-index: 2;
  left: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  top: 50%;
  transform: translateY(-50%);
  max-width: 650px;
  color: #fff;
}
.vision-overlay p {
  font-size: clamp(35px, 4vw, 58px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}
.leadership {
  max-width: none;
  padding-left: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  padding-right: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 54%, var(--rose) 100%);
  border-top: 1px solid var(--line);
}
.large-text {
  font-size: 25px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--gray);
}
.topic-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 35px 0;
}
.topic-flow span {
  border: 1px solid var(--line);
  padding: 8px 14px;
  background: rgba(255,255,255,.66);
}
.leadership-image {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  margin: 10px 0 0;
  overflow: hidden;
  border-top: 5px solid var(--red);
}
.leadership-image img {
  display: block;
  width: 100%;
  height: auto;
}
.leadership-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 248, 246, .78) 0%, rgba(251, 248, 246, .34) 27%, transparent 45%);
}
.leadership-image blockquote {
  position: absolute;
  z-index: 2;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.28;
  font-weight: 700;
}
.leadership-image blockquote::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--red);
}
.opening-copy h2::after,
.services-intro h2::after,
.leadership-title h2::after,
.about-title h2::after,
.contact h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 28px;
  background: var(--red);
}
.approach {
  background: var(--red);
  color: #fff;
  padding: 115px 30px;
}
.approach-inner {
  max-width: var(--max);
  margin: auto;
}
.approach h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 65px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  padding-top: 28px;
}
.steps b {
  font-size: 14px;
}
.steps h3 {
  font-size: 27px;
  margin: 22px 0 8px;
}
.steps p {
  margin: 0;
}
.about {
  max-width: none;
  padding-left: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  padding-right: max(30px, calc((100vw - var(--max)) / 2 + 30px));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
  background: linear-gradient(120deg, var(--cream), #fff 70%);
}
.about-title {
  position: sticky;
  top: 50px;
  align-self: start;
}
.signature {
  color: var(--red);
  font-size: 23px;
  font-style: italic;
}
.about-copy p {
  margin-top: 0;
  margin-bottom: 28px;
}
.about blockquote {
  font-size: 23px;
  line-height: 1.45;
  font-weight: 700;
  margin: 45px 0 0;
  padding: 28px 0 28px 30px;
  border-left: 5px solid var(--red);
}
.audiences {
  background: #f7f1ef;
  color: var(--ink);
  padding: 45px 30px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audiences p {
  font-size: 21px;
  max-width: 950px;
  margin: auto;
  font-weight: 700;
}
.audiences p::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 0 auto 22px;
  background: var(--red);
}
.contact {
  text-align: center;
  max-width: none;
  padding-left: max(30px, calc((100vw - 940px) / 2 + 30px));
  padding-right: max(30px, calc((100vw - 940px) / 2 + 30px));
  background: linear-gradient(120deg, #fff 0%, var(--cream) 60%, rgba(247, 238, 238, .68) 100%);
}
.contact::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  margin: -70px auto 55px;
  background: var(--red);
}
.contact > p:not(.eyebrow) {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}
.contact-links a,
.contact-links .email-obfuscated {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-weight: 700;
}
.contact-links .email-obfuscated + a {
  background: var(--gray);
}
.google-review {
  margin: 52px auto 0;
  padding-top: 34px;
  max-width: 720px;
  border-top: 1px solid var(--line);
}
.google-review > p:not(.eyebrow) {
  margin: 0 0 18px;
  font-size: 17px;
  color: var(--gray);
}
.google-review .eyebrow {
  margin-bottom: 12px;
}
.google-review h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.25;
}
.review-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 22px;
}
.review-links a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0 6px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}
.review-links a:hover {
  color: var(--red);
}
.review-links span {
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}
footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 52px 0 52px max(30px, calc((100vw - var(--max)) / 2 + 30px));
  background: #f6f5f4;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1.15fr minmax(290px, 28vw);
  gap: 46px;
  align-items: center;
  font-size: 14px;
}
.footer-brand {
  position: relative;
  color: var(--gray);
  padding-right: 45px;
  border-right: 1px solid #d7d4d2;
}
.footer-brand img {
  width: min(310px, 100%);
  display: block;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.55;
  color: var(--gray);
}
.footer-contact strong {
  margin-bottom: 4px;
  font-size: 16px;
}
.footer-contact a {
  color: var(--gray);
  text-decoration: none;
}
.footer-legal a {
  color: #fff;
  text-decoration: none;
}
.footer-legal {
  display: flex;
  gap: 18px;
  align-self: stretch;
  align-items: flex-end;
  justify-content: center;
  margin: -52px 0;
  padding: 52px 28px 38px 70px;
  background: linear-gradient(135deg, #ef253f 0%, #d60f2c 68%, #b80c25 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--red);
}
.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}
.fade.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
  }
  .brand img {
    width: 210px;
  }
  .menu {
    display: block;
  }
  .site-header nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    height: 700px;
  }
  .hero-copy {
    width: auto;
    right: 30px;
  }
  .hero-shade {
    background: rgba(24, 25, 27, 0.62);
  }
  .section {
    padding: 85px 24px;
  }
  .opening,
  .services,
  .leadership,
  .about {
    padding-left: 24px;
    padding-right: 24px;
  }
  .opening,
  .services,
  .leadership,
  .about,
  .orientation {
    grid-template-columns: 1fr;
  }
  .side-note {
    display: none;
  }
  .two-columns {
    gap: 35px;
  }
  .orientation-image {
    min-height: 440px;
  }
  .orientation-copy {
    padding: 75px 28px;
  }
  .services-intro,
  .about-title {
    position: static;
  }
  .vision {
    height: 480px;
  }
  .steps {
    gap: 28px;
  }
  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 32px;
    padding: 55px 24px 0;
  }
  .footer-contact {
    margin-top: 0;
  }
  .footer-brand {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid #d7d4d2;
  }
  .footer-legal {
    align-self: stretch;
    width: auto;
    min-height: 100px;
    align-items: flex-end;
    justify-content: flex-start;
    margin: 0 -24px;
    padding: 55px 24px 28px;
    clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 580px) {
  body {
    font-size: 16px;
  }
  .site-header {
    padding: 16px 20px;
  }
  .hero {
    height: 670px;
    min-height: 0;
  }
  .hero-copy {
    left: 20px;
    right: 20px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }
  .section {
    padding: 65px 20px;
  }
  .opening,
  .services,
  .leadership,
  .about {
    padding-left: 20px;
    padding-right: 20px;
  }
  .opening h2,
  .services h2,
  .leadership h2,
  .about h2,
  .contact h2 {
    font-size: 37px;
  }
  .two-columns,
  .steps {
    grid-template-columns: 1fr;
  }
  .orientation-image {
    min-height: 330px;
  }
  .orientation-copy {
    padding: 60px 20px;
  }
  .orientation-copy h2 {
    font-size: 38px;
  }
  .leadership-image img {
    width: 100%;
    height: auto;
  }
  .leadership-image::after {
    display: none;
  }
  .leadership-image blockquote {
    position: static;
    width: auto;
    transform: none;
    padding: 28px 22px 32px;
    background: var(--cream);
  }
  .vision {
    height: 430px;
  }
  .vision-overlay {
    left: 20px;
    right: 20px;
  }
  .vision-overlay p {
    font-size: 34px;
  }
  .approach {
    padding: 70px 20px;
  }
  .steps {
    gap: 35px;
  }
  .contact-links {
    flex-direction: column;
  }
  .review-links {
    align-items: center;
    flex-direction: column;
  }
  .contact-links a,
  .contact-links .email-obfuscated {
    overflow-wrap: anywhere;
  }
  footer {
    padding: 45px 20px 0;
  }
  .footer-legal {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
