@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  color: #F1BF5B;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #F1BF5B;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1920px;
}

body {
  overflow-x: hidden;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.site-header .container {
  margin: 0 auto;
  padding: 10px 30px 0 30px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
}
.site-header hr {
  margin: 0;
  border: none;
  margin-top: 2px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}
.site-header {
  /* LOGO*/
}
.site-header .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-header .custom-logo-link img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}
.site-header {
  /* 
      DESKTOP NAV
  */
}
.site-header__nav-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 5px;
}
.site-header__nav--left {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}
.site-header__nav--right {
  display: flex;
  justify-content: flex-end;
}
.site-header__nav .site-header__menu,
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__nav li {
  list-style: none;
}
.site-header__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #3D4D61;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s ease;
}
.site-header__nav a:hover {
  opacity: 0.8;
}
.site-header__nav .menu-item-cta a {
  color: #fff;
  background-color: #F1BF5B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-header__nav .menu-item-cta a::after {
  content: "→";
  margin-left: 8px;
}
.site-header {
  /*STANDALONE CTA BUTTON */
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  padding: 10px 15px;
  background: #d8a548;
  color: #0F1D2F;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 10px;
}
.site-header__cta span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: #fff;
  color: #0F1D2F;
  border-radius: 5px;
  font-size: 14px;
}
.site-header__cta--mobile {
  display: none;
}
.site-header {
  /*  HAMBURGER*/
}
.site-header__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.site-header__hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
  display: block;
}
.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}
.site-header {
  /*  MOBILE DRAWER*/
}
.site-header__mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.35s ease, max-height 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}
.site-header__mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  max-height: 100vh;
}
.site-header__mobile-nav__inner {
  padding: 20px;
}
.site-header__mobile-nav__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 10px 0;
}
.site-header__mobile-nav .site-header__menu,
.site-header__mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__mobile-nav li {
  list-style: none;
}
.site-header__mobile-nav li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header__mobile-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  transition: 0.25s ease;
}
.site-header__mobile-nav a:hover {
  color: #F1BF5B;
}
.site-header__mobile-nav__inner .site-header__cta--mobile {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  margin-top: 20px;
  padding: 10px 10px 10px 20px;
  background: #d8a548;
  color: #0F1D2F;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
}
.site-header__mobile-nav__inner .site-header__cta--mobile span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #0F1D2F;
  border-radius: 5px;
  font-size: 14px;
}

/* TABLET */
@media (max-width: 991px) {
  .site-header__nav {
    display: none;
  }
  .site-header__hamburger {
    display: flex;
  }
  .site-header .custom-logo-link img {
    max-width: 170px;
  }
}
/*  MOBILE */
@media (max-width: 767px) {
  .site-header .container {
    padding: 14px 20px;
  }
  .site-header__inner {
    min-height: auto;
    gap: 12px;
    justify-content: space-between;
  }
  .site-header__nav {
    display: none !important;
  }
  .site-header__nav-right-group {
    display: none !important;
  }
  .site-header .custom-logo-link {
    order: 1;
    margin-right: auto;
  }
  .site-header__hamburger {
    order: 2;
    display: flex;
    width: auto;
    height: 30px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
  }
  .site-header__hamburger span {
    width: 18px;
  }
  .site-header__mobile-nav .site-header__menu a {
    font-size: 17px;
  }
}
.site-footer {
  background: #0F1D2F;
  color: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .site-footer {
    padding: 102px 0;
  }
}
.site-footer {
  padding: 80px 0 40px 0;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.site-footer a:hover {
  opacity: 0.8;
}
.site-footer .container {
  padding: 0 4rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-footer .container {
    padding: 0 1.5rem;
  }
}
.site-footer {
  /*   TOP */
}
.site-footer .footer-top {
  width: 100%;
  justify-items: space-between;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
  align-items: start;
  padding-bottom: 55px;
}
.site-footer {
  /*
    LEFT */
}
.site-footer .footer-links {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 60px;
}
.site-footer .footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-links li {
  margin-bottom: 16px;
}
.site-footer .footer-links li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-links a {
  font-size: 23.5px;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Inter Tight", sans-serif;
}
.site-footer {
  /* MIDDLE */
}
.site-footer .footer-middle {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-left: 90px;
}
@media (max-width: 768px) {
  .site-footer .footer-middle {
    padding-left: 0;
  }
}
.site-footer .label {
  display: block;
  margin-bottom: 14px;
  font-size: 1.094rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #949AA2;
}
.site-footer .footer-social-icons {
  display: flex;
  gap: 16px;
}
.site-footer .footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.site-footer .office-address p {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Inter Tight", sans-serif;
  width: 199px;
  line-height: 1.2;
  color: #fff;
}
.site-footer {
  /*RIGHT*/
}
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-left: 90px;
}
@media (max-width: 768px) {
  .site-footer .footer-contact {
    padding-left: 0;
  }
}
.site-footer .footer-contact a {
  font-size: 1.25rem;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.site-footer {
  /*LOGO*/
}
.site-footer .footer-logo {
  margin-top: 10px;
  margin-bottom: 35px;
  padding: 0 40px;
}
.site-footer .footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer {
  /*BOTTOM*/
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.site-footer .footer-bottom .footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-footer .footer-bottom .footer-bottom-left a {
  position: relative;
  font-family: "Inter Tight", sans-serif;
  padding-left: 18px;
}
.site-footer .footer-bottom .footer-bottom-left a::before {
  content: "|";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}
.site-footer .footer-bottom .footer-bottom-right {
  text-align: right;
}
.site-footer {
  /*TABLET*/
}
@media (max-width: 1024px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .site-footer .footer-contact {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-between;
  }
  .site-footer .footer-links {
    border: none;
    padding-right: 0;
  }
}
.site-footer {
  /*MOBILE*/
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 45px;
  }
  .site-footer .footer-top {
    display: block;
  }
  .site-footer .footer-links,
  .site-footer .footer-middle,
  .site-footer .footer-contact {
    margin-bottom: 40px;
  }
  .site-footer .footer-contact {
    flex-direction: column;
    gap: 28px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .site-footer .footer-bottom .footer-bottom-left {
    justify-content: center;
    flex-wrap: wrap;
  }
  .site-footer .footer-bottom .footer-bottom-right {
    text-align: center;
  }
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  display: flex;
  padding-top: 140px;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.hero__title {
  max-width: 738px;
  margin: 0 auto;
  font-size: 71px;
  line-height: 63px;
  letter-spacing: -2.13px;
  font-weight: 700;
  color: #fff;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
}
.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 19px;
  margin-top: 30px;
  background: #fff;
  color: #0f1d2f;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-family: "Inter Tight", sans-serif;
  transition: 0.3s ease;
}
.hero__button:hover {
  transform: translateY(-3px);
}
.hero__button span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #d8a548;
  color: #fff;
}
.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.hero__stats-wrap {
  position: relative;
  flex: 0 0 auto;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.hero__stats {
  position: relative;
  z-index: 1;
}
.hero__stats-list {
  display: flex;
  gap: 8px;
}
.hero__stats-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(15, 29, 47, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero__stat {
  padding: 20px 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: #868e9e;
  border-radius: 5px;
}
.hero__stat-number {
  margin: 0;
  font-size: 35px;
  line-height: 1;
  color: #293646;
  font-weight: 700;
  font-family: "Cinzel", serif;
}
.hero__stat-label {
  margin: 0;
  font-size: 14.5px;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #e4e5e7;
}
.hero__about {
  position: relative;
  flex: 1;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 30px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}
.hero__text-max {
  max-width: 220px;
  flex: 0 0 auto;
  align-self: end;
}
.hero__about-text {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  align-self: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
.hero__scroll {
  display: flex;
  align-items: center;
  align-self: end;
  gap: 20px;
  flex: 1;
  min-width: 120px;
  justify-content: flex-end;
}
.hero__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.hero__scroll-text {
  text-align: right;
  white-space: nowrap;
  flex: 0 0 auto;
}
@media (max-width: 1200px) {
  .hero__content {
    padding: 0 40px;
  }
  .hero__title {
    font-size: 56px;
  }
  .hero__stat {
    width: 180px;
    padding: 24px;
  }
  .hero__stat-number {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .hero__content {
    padding: 0 24px;
  }
  .hero__title {
    font-size: 52px;
    line-height: 1.1;
  }
  .hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .hero__stats-wrap {
    width: 100%;
    padding: 0;
    order: 1;
  }
  .hero__stats-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }
  .hero__stat {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }
  .hero__stat-number {
    font-size: 42px;
  }
  .hero__about {
    flex: 1 1 100%;
    order: 2;
    align-items: flex-end;
    padding: 0;
  }
  .hero__about-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 100dvh;
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 12dvh;
    overflow: hidden;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
  }
  .hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 2dvh;
    text-align: center;
    box-sizing: border-box;
    flex: 0 0 auto;
  }
  .hero__title {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 3dvh;
  }
  .hero__button {
    display: inline-flex;
    justify-content: center;
    margin: 0.5dvh auto 0;
  }
  .hero {
    /* Bottom */
  }
  .hero__bottom {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
  }
  .hero {
    /* About */
  }
  .hero__about {
    order: 1;
    width: 100%;
    padding: 2dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2dvh;
    box-sizing: border-box;
  }
  .hero__text-max {
    max-width: 100%;
    align-self: flex-start;
  }
  .hero__about-text {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }
  .hero__scroll {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2dvh;
  }
  .hero__line {
    width: 100%;
    height: 1px;
    flex: none;
  }
  .hero__scroll-text {
    text-align: left;
    align-self: flex-start;
  }
  .hero {
    /* Stats */
  }
  .hero__stats-wrap {
    order: 2;
    position: relative;
    width: 100%;
    padding: 0;
    display: block;
    box-sizing: border-box;
  }
  .hero__stats {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .hero__stats-blur {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(15, 29, 47, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .hero__stats-list {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    gap: 5px;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
  }
  .hero__stat {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: #868e9e;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .hero__stat-number {
    margin: 0;
    font-size: 18px;
    line-height: 1;
    color: #293646;
    font-weight: 700;
    font-family: "Cinzel", serif;
  }
  .hero__stat-label {
    margin: 0;
    font-size: 11px;
    font-family: "Inter Tight", sans-serif;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #e4e5e7;
  }
}

.about {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #DBE4F4;
}
.about__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .about__col {
    padding: 50px;
  }
}
.about {
  /* LEFT COLUMN */
}
.about__col--left {
  align-items: center;
  text-align: center;
}
.about__eyebrow {
  margin: 0 0 16px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #949AA2;
}
.about__heading {
  margin: 0 0 20px;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
  width: 340px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0F1D2F;
}
.about__subtext {
  margin: 10px auto 50px;
  max-width: 453px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #0F1D2F;
}
.about__subtext p {
  margin: 0;
  color: inherit;
}
.about__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: #fff;
  color: #1c2b3c;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.094rem;
  font-family: "Inter Tight", sans-serif;
  border-radius: 5px;
  transition: 0.3s ease;
}
.about__button:hover {
  transform: translateY(-3px);
}
.about__button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #F1BF5B;
  color: #0F1D2F;
  border-radius: 5px;
}
.about {
  /* CENTER COLUMN — IMAGE */
}
.about__col--image {
  flex: 1 1 0;
  padding: 0;
  justify-content: stretch;
}
.about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about {
  /* RIGHT COLUMN */
}
.about__col--right {
  align-items: center;
  text-align: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .about__col--right {
    gap: 40px;
  }
}
.about__logo {
  display: block;
  width: 74px;
  height: auto;
  opacity: 0.35;
}
.about__message {
  margin: 0 auto;
  max-width: 410px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #0F1D2F;
}
.about__message p {
  margin: 0;
  color: inherit;
}
.about__signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  color: #0F1D2F;
}
.about__name {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.about__position {
  margin: 0;
  text-transform: uppercase;
}
.about {
  /*TABLET */
}
@media (max-width: 991px) {
  .about {
    flex-wrap: wrap;
  }
  .about__col--left, .about__col--right {
    flex: 1 1 50%;
  }
  .about__col--image {
    order: 3;
    flex: 1 1 100%;
    min-height: 400px;
  }
}
.about {
  /* MOBILE */
}
@media (max-width: 767px) {
  .about {
    flex-direction: column;
    align-items: center;
  }
  .about__col {
    flex: 1 1 auto;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
  }
  .about__col--left {
    order: 1;
  }
  .about__heading {
    font-size: 26px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about__subtext {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about__col--image {
    order: 2;
    min-height: auto;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .about__image {
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }
  .about__col--right {
    order: 3;
    align-items: center;
    text-align: center;
  }
  .about__message {
    margin-left: auto;
    margin-right: auto;
  }
  .about__signature {
    align-items: center;
  }
}

.about-banner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
}
@media (max-width: 768px) {
  .about-banner {
    min-height: 100vh;
  }
}
.about-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .about-banner__img--desktop {
    display: none;
  }
}
.about-banner__img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .about-banner__img--mobile {
    display: block;
  }
}
.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(181deg, #0F1D2F 0%, rgba(0, 0, 0, 0) 50%, #0F1D2F 100%);
}
.about-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 150px 30px 60px;
  box-sizing: border-box;
  color: #fff;
}
@media (max-width: 768px) {
  .about-banner__inner {
    min-height: 100vh;
    padding: 90px 1rem 1.5rem;
  }
}
.about-banner__heading {
  align-self: center;
  margin: 0;
  width: 840px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -2.1px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .about-banner__heading {
    font-size: 34px;
    width: 340px;
    letter-spacing: -0.5px;
  }
}
.about-banner__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .about-banner__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
}
.about-banner__info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 730px;
}
@media (max-width: 768px) {
  .about-banner__info {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.about-banner__label {
  flex-shrink: 0;
  width: 130px;
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C4C2C0;
}
@media (max-width: 768px) {
  .about-banner__label {
    width: auto;
  }
}
.about-banner__subtext {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}
.about-banner__subtext p {
  margin: 0;
  color: inherit;
}
.about-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #ffffff;
  color: #0F1D2F;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.about-banner__cta:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .about-banner__cta {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    align-items: center;
    align-self: start;
  }
}
.about-banner__cta-label {
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
}
.about-banner__cta-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #F1BF5B;
  color: #0F1D2F;
}
.about-banner__cta-icon svg {
  display: block;
}

.process-section {
  position: relative;
  isolation: isolate;
  background-image: var(--process-bg);
  background-size: cover;
  background-position: center;
  padding: 80px 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .process-section {
    background-image: var(--process-bg-mobile, var(--process-bg));
    padding: 50px 20px;
  }
}
.process-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  max-width: 1920px;
  margin: 0 auto;
  min-height: calc(100vh - 4rem * 2);
}
@media (max-width: 1024px) {
  .process-section__inner {
    min-height: calc(100vh - 3rem * 2);
  }
}
@media (max-width: 768px) {
  .process-section__inner {
    min-height: calc(100vh - 1.25rem * 2);
  }
}

.process-header__subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #DBE4F4;
  margin: 0 0 0.75rem;
}
.process-header__heading {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.563rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 414px;
  margin: 0;
}

.process-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .process-points {
    padding-top: 350px;
  }
}

.process-row {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 80px;
}
@media (max-width: 1024px) {
  .process-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.process-point {
  flex: 0 0 calc((100% - 2 * 80px) / 3);
  min-width: 0;
  background: rgba(15, 29, 47, 0.4);
  border-radius: 5px;
  padding: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.2s ease;
}
@media (max-width: 1024px) {
  .process-point {
    flex: 1 1 auto;
  }
}
.process-point__sn {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  color: #F1BF5B;
  margin-bottom: 0.75rem;
}
.process-point__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 1.563rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0.75rem;
}
.process-point__desc {
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  font-size: 1.094rem;
  line-height: 1.2;
  margin: 0;
}

.process-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .process-arrows {
    display: none;
  }
}

.process-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  object-fit: contain;
}
.process-arrow--1 {
  left: calc(calc((100% - 2 * 80px) / 3) + 80px / 2 - 46px / 2);
}
.process-arrow--2 {
  left: calc(calc((100% - 2 * 80px) / 3) * 2 + 80px * 1.5 - 46px / 2);
}

.whoweare-achievements__row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .whoweare-achievements__row {
    flex-direction: column;
    min-height: 0;
  }
}
.whoweare-achievements__row--whoweare {
  flex-direction: row;
}
@media (max-width: 768px) {
  .whoweare-achievements__row--whoweare {
    flex-direction: column;
  }
}
.whoweare-achievements__row--achievement {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .whoweare-achievements__row--achievement {
    flex-direction: column;
  }
}
.whoweare-achievements__panel {
  flex: 0 0 43%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 4rem 4rem 2.5rem;
  background: #DBE4F4;
  gap: 130px;
}
@media (max-width: 768px) {
  .whoweare-achievements__panel {
    flex: 1 1 auto;
    padding: 2.5rem 1.25rem;
    gap: 60px;
  }
}
.whoweare-achievements__panel--dark {
  background: #0F1D2F;
  color: #ffffff;
  padding: 4rem 2.5rem 4rem 4rem;
}
@media (max-width: 768px) {
  .whoweare-achievements__panel--dark {
    padding: 2.5rem 1.25rem;
  }
}
.whoweare-achievements__content {
  display: flex;
  flex-direction: column;
}
.whoweare-achievements__media {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.whoweare-achievements__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
}
@media (max-width: 768px) {
  .whoweare-achievements__media {
    min-height: 320px;
  }
}
.whoweare-achievements__logo {
  width: 38px;
  height: auto;
  flex-shrink: 0;
}
.whoweare-achievements__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #949AA2;
}
.whoweare-achievements__heading {
  margin: 0 0 1.25rem;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .whoweare-achievements__heading {
    font-size: 1.563rem;
    max-width: 100%;
  }
}
.whoweare-achievements__panel--dark .whoweare-achievements__heading {
  color: #ffffff;
}
.whoweare-achievements__subtext {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .whoweare-achievements__subtext {
    font-size: 1.094rem;
  }
}
.whoweare-achievements__subtext p {
  margin: 0 0 1rem;
  color: inherit;
}
.whoweare-achievements__subtext p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .whoweare-achievements__subtext {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}
.whoweare-achievements__panel--dark .whoweare-achievements__subtext {
  color: rgba(255, 255, 255, 0.65);
}
.whoweare-achievements__table {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .whoweare-achievements__table {
    padding-top: 20px;
  }
}
.whoweare-achievements__row-item {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .whoweare-achievements__row-item {
    gap: 0.5rem;
  }
}
.whoweare-achievements__row-label {
  flex: 0 0 220px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  color: #DBE4F4;
}
@media (max-width: 768px) {
  .whoweare-achievements__row-label {
    flex-basis: 140px;
    font-size: 17px;
  }
}
.whoweare-achievements__row-value {
  flex: 1 1 auto;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  color: #DBE4F4;
}
@media (max-width: 768px) {
  .whoweare-achievements__row-value {
    font-size: 17px;
  }
}
.whoweare-achievements__row-value p {
  margin: 0;
  color: inherit;
}

.mission-vision__panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px;
  background: #293646;
}
@media (max-width: 768px) {
  .mission-vision__panel {
    padding: 3rem 1rem;
  }
}
.mission-vision__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1320px;
  max-width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .mission-vision__pattern {
    width: 980px;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
  }
}
.mission-vision__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71px;
  max-width: 560px;
  text-align: center;
}
@media (max-width: 768px) {
  .mission-vision__inner {
    gap: 2rem;
  }
}
.mission-vision__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.mission-vision__heading {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #ffffff;
}
.mission-vision__subtext {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
}
.mission-vision__subtext p {
  margin: 0;
  color: inherit;
}
.mission-vision__subtext p:not(:last-child) {
  margin-bottom: 0.75rem;
}
.mission-vision__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .mission-vision__media img {
    height: 320px;
    object-fit: cover;
    object-position: center;
  }
}

.why-pn {
  width: 100%;
  background: #c9d0db;
  overflow: hidden;
}
.why-pn__inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px 60px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .why-pn__inner {
    padding: 20px;
    gap: 20px;
  }
}
.why-pn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-pn__eyebrow {
  margin: 0 0 6px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #949AA2;
}
@media (max-width: 768px) {
  .why-pn__eyebrow {
    font-size: 1.125rem;
  }
}
.why-pn__heading {
  color: #0F1D2F;
  padding: 10px 0 30px 0;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.75px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .why-pn__heading {
    font-size: 1.25rem;
  }
}
.why-pn__accordion {
  width: 100%;
  max-width: min(792px, 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-pn__item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.why-pn__item[open] .why-pn__icon-plus {
  display: none;
}
.why-pn__item[open] .why-pn__icon-minus {
  display: block;
}
.why-pn__item[open] .why-pn__body {
  border-radius: 5px 5px 0 0;
}
.why-pn__item[open] .why-pn__number {
  align-items: flex-start;
  padding-top: 8px;
}
.why-pn__item[open] .why-pn__description {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 15px;
}
.why-pn__item:not([open]) .why-pn__description {
  grid-template-rows: 0fr;
  opacity: 0;
  padding-bottom: 0;
}
.why-pn__trigger {
  display: flex;
  align-items: stretch;
  min-height: 30px;
  padding-left: 35px;
  cursor: pointer;
  list-style: none;
}
.why-pn__trigger::-webkit-details-marker {
  display: none;
}
.why-pn__trigger::marker {
  display: none;
}
.why-pn__trigger:focus-visible {
  outline: 2px solid #949AA2;
  outline-offset: 2px;
}
.why-pn__number {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F1D2F;
  border-radius: 5px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
}
.why-pn__body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 12px 12px 26px;
  background: #DBE4F4;
  border-radius: 5px;
}
.why-pn__title {
  color: #293646;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.54px;
}
.why-pn__icon {
  width: 20px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F1D2F;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.why-pn__icon-minus {
  display: none;
  font-size: 16px;
  font-weight: 300;
}
.why-pn__description {
  display: grid;
  grid-template-rows: 0fr;
  margin-left: 35px;
  padding-right: 35px;
  padding-left: 26px;
  overflow: hidden;
  background: #dbe4f4;
  border-radius: 0 0 5px 5px;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
}
.why-pn__description > * {
  min-height: 0;
  margin: 0;
}
.why-pn__description p {
  margin: 0;
  color: #0F1D2F;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  font-weight: 400;
  line-height: 1.2;
}
.why-pn__button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 15px;
  padding: 14px 18px;
  background: #fff;
  color: #293646;
  text-decoration: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1;
  border-radius: 5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.why-pn__button-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1BF5B;
  font-size: 16px;
  line-height: 1;
}
.why-pn__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.why-pn__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1.75/1;
}
@media (max-width: 1000px) {
  .why-pn__inner {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-pn__content {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .why-pn__image {
    min-height: auto;
  }
  .why-pn__image img {
    aspect-ratio: 16/9;
  }
  .why-pn__button {
    margin-bottom: 20px;
  }
}

.founder {
  width: 100%;
  background: #F1BF5B;
  overflow: hidden;
}
.founder__inner {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: 80px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 768px) {
  .founder__inner {
    padding: 50px 20px;
  }
}
.founder__media {
  width: 100%;
}
.founder__media img {
  display: block;
  width: 100%;
  object-position: center;
}
.founder__content {
  display: flex;
  flex-direction: column;
}
.founder__eyebrow {
  margin: 0 0 10px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #293646;
}
.founder__heading {
  margin: 10px 0 30px;
  color: #0F1D2F;
  font-family: "Cinzel", serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.founder__subtext {
  max-width: 873px;
  margin: 15px 0 35px;
  color: #0F1D2F;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}
.founder__subtext p {
  margin: 0 0 16px;
}
.founder__subtext p:last-child {
  margin-bottom: 0;
}
.founder__name {
  margin: 30px 0 4px;
  color: #0F1D2F;
  font-family: "DM Sans", sans-serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.75px;
}
.founder__designation {
  margin: 3px 0 26px;
  color: #293646;
  font-weight: 400px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.founder__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.founder__link {
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.founder__link:hover {
  opacity: 0.7;
}
@media (max-width: 1000px) {
  .founder__inner {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .founder__media img {
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .founder__heading {
    font-size: 50px;
    margin: 10px 0 10px;
  }
  .founder__subtext {
    font-size: 1.094rem;
  }
  .founder__media img {
    aspect-ratio: auto;
    object-fit: contain;
  }
  .founder__name {
    margin: 10px 0 4px;
  }
}

.footer-banner {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--footer-banner-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .footer-banner {
    min-height: 490px;
    background-image: var(--footer-banner-bg-mobile, var(--footer-banner-bg));
  }
}
.footer-banner__overlay {
  position: absolute;
  inset: 0;
}
.footer-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-banner__heading {
  margin: 0 0 20px;
  max-width: 990px;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -2.1px;
  line-height: 1.15;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer-banner__heading {
    font-size: 40px;
  }
}
.footer-banner__subtext {
  max-width: 700px;
  margin: 0 0 35px;
  color: #ffffff;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer-banner__subtext {
    font-size: 1.094rem;
  }
}
.footer-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 14px 14px 20px;
  text-decoration: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.footer-banner__button:hover {
  transform: translateY(-1px);
}
.footer-banner__button--primary {
  background: #F1BF5B;
  color: #0F1D2F;
}
.footer-banner__button--primary .footer-banner__button-icon {
  background: #ffffff;
  color: #0F1D2F;
}
.footer-banner__button--secondary {
  background: #ffffff;
  color: #0F1D2F;
}
.footer-banner__button--secondary .footer-banner__button-icon {
  background: #F1BF5B;
  color: #0F1D2F;
}
.footer-banner__button-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.gallery-section {
  width: 100%;
  background-color: #DBE4F4;
  padding: 100px 80px;
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 1.25rem;
  }
}
.gallery-section__inner {
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 7fr 10fr;
  align-items: center;
  gap: 90px;
}
@media (max-width: 1024px) {
  .gallery-grid {
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    gap: 1.25rem;
  }
}

.gallery-item {
  width: 100%;
}
.gallery-item__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .gallery-item__frame {
    max-height: 90vh;
  }
}
.gallery-item__img {
  display: block;
  width: 100%;
}

.gallery-item--small .gallery-item__frame {
  aspect-ratio: 658/484;
}
.gallery-item--small .gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  transition: transform 0.6s ease;
}
.gallery-item--small:hover .gallery-item__img {
  transform: scale(1.08);
}

.gallery-item--large .gallery-item__frame {
  aspect-ratio: 923/948;
}
.gallery-item--large .gallery-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.9s ease;
}
.gallery-item--large:hover .gallery-item__img {
  transform: translateY(-10%);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item__img {
    transition: none;
  }
}
.gallery-section,
.gallery-section *,
.gallery-section *::before,
.gallery-section *::after {
  box-sizing: border-box;
}

.banner-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #F1BF5B;
  min-height: 758px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .banner-section {
    min-height: 520px;
  }
}
.banner-section__frame {
  position: absolute;
  top: calc(50% - 419px / 2);
  bottom: calc(50% - 419px / 2);
  left: calc(50% - 608px / 2);
  right: calc(50% - 608px / 2);
  z-index: 0;
  overflow: hidden;
  border-radius: 5px;
  transition: top 0.9s cubic-bezier(0.65, 0, 0.35, 1), bottom 0.9s cubic-bezier(0.65, 0, 0.35, 1), left 0.9s cubic-bezier(0.65, 0, 0.35, 1), right 0.9s cubic-bezier(0.65, 0, 0.35, 1), border-radius 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (max-width: 768px) {
  .banner-section__frame {
    top: calc(50% - 260px / 2);
    bottom: calc(50% - 260px / 2);
    left: calc(50% - 260px / 2);
    right: calc(50% - 260px / 2);
  }
}
.banner-section:hover .banner-section__frame, .banner-section.is-visible .banner-section__frame {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}
.banner-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 47, 0.55);
}
.banner-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}
.banner-section__heading {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 70px;
  width: 862px;
  line-height: 1.2;
  letter-spacing: -2.1px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .banner-section__heading {
    font-size: 35px;
    width: 250px;
  }
}
.banner-section__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  padding-left: 1.25rem;
  border-radius: 5px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .btn {
    padding: 10px;
  }
}
.btn__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.btn__icon svg {
  display: block;
}
.btn--primary {
  background: #F1BF5B;
  color: #0F1D2F;
  border-color: #F1BF5B;
}
.btn--primary .btn__icon {
  background: #ffffff;
}
.btn--secondary {
  background: #ffffff;
  color: #0F1D2F;
  border-color: #ffffff;
}
.btn--secondary .btn__icon {
  background: #F1BF5B;
}

@media (prefers-reduced-motion: reduce) {
  .banner-section__frame {
    transition: none;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #dbe6f5;
  border-radius: 12px;
  overflow: hidden;
}
.blog-card__link {
  display: flex;
  align-items: stretch;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
@media (max-width: 576px) {
  .blog-card__link {
    flex-direction: column;
  }
}
.blog-card__image {
  flex: 0 0 42%;
  max-width: 42%;
}
@media (max-width: 576px) {
  .blog-card__image {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a2b4c;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.blog-card__category {
  color: #1a2b4c;
}
.blog-card__dot {
  color: #e8a13e;
}
.blog-card__date {
  color: #6b7280;
  text-transform: none;
  font-weight: 500;
}
.blog-card__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f1f3d;
  margin: 0 0 24px;
}
.blog-card__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px 10px 18px;
  font-weight: 600;
  font-size: 14px;
  color: #0f1f3d;
  width: fit-content;
}
.blog-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e8a13e;
  border-radius: 4px;
}
.blog-card__arrow img {
  width: 14px;
  height: 14px;
}

.blog-archive {
  background: #0F1D2F;
  color: #fff;
  min-height: 100vh;
}
.blog-archive__section {
  padding: 180px 20px;
}
.blog-archive__layout {
  display: grid;
  grid-template-columns: minmax(506px, 290px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.blog-archive__intro {
  padding-top: 2px;
}
.blog-archive__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #BCC5D3;
  font-size: 1.125rem;
  line-height: 1;
}
.blog-archive__title {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -1.25px;
}
.blog-archive__description {
  max-width: 506px;
  margin: 0 0 30px;
  color: #ffffff;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}
.blog-archive__filters {
  display: grid;
  padding-top: 10px;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 20px;
  max-width: 506px;
}
.blog-archive__filters a {
  position: relative;
  color: #FAE9C8;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Inter Tight", sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.8px;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.blog-archive__filters a:hover {
  opacity: 0.65;
}
.blog-archive__filters a.is-active {
  color: #fff;
  font-weight: 600;
}
.blog-archive__empty {
  padding: 40px;
  background: #d4e2f1;
  color: #071827;
  text-align: center;
}
.blog-archive__empty h2 {
  margin: 0 0 15px;
  font-size: 16px;
}
.blog-archive__empty a {
  color: #071827;
  font-size: 10px;
  text-decoration: underline;
}

.blog-grid {
  display: grid;
  /*
   * Two equal cards, matching the screenshot.
   */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.blog-card {
  overflow: hidden;
  width: 100%;
  background: #d4e2f1;
  color: #071827;
  border-radius: 5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}
.blog-card__link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-card__image {
  /*
   * The screenshot has a small inset around
   * the image inside the light-blue card.
   */
  padding: 12px 12px 0;
}
.blog-card__image img {
  display: block;
  width: 100%;
  height: auto;
  /*
   * Keep the natural card image proportion.
   */
  aspect-ratio: 1.82/1;
  object-fit: cover;
  border-radius: 2px;
}
.blog-card__body {
  padding: 16px 12px 18px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: #687888;
  font-size: 9px;
  line-height: 1;
}
.blog-card__category {
  font-weight: 600;
}
.blog-card__dot {
  font-size: 9px;
}
.blog-card__title {
  min-height: 45px;
  margin: 0 0 14px;
  color: #071827;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.blog-card__button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 7px;
  background: #fff;
  border-radius: 3px;
  color: #071827;
  font-size: 9px;
  line-height: 1;
}
.blog-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #f5b84b;
  border-radius: 2px;
}
.blog-card__arrow img {
  width: 7px;
  height: 7px;
}

.blog-pagination {
  margin-top: 18px;
}
.blog-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination__item a,
.blog-pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #748291;
  font-size: 9px;
  line-height: 1;
  text-decoration: none;
}
.blog-pagination__item .current {
  color: #fff;
}
.blog-pagination__item .prev,
.blog-pagination__item .next {
  background: #fff;
  border-radius: 2px;
  color: #071827;
  font-size: 13px;
}
.blog-pagination__item .next {
  background: #f5b84b;
}

@media (max-width: 1200px) {
  .blog-grid {
    gap: 24px;
  }
  .blog-card__image {
    /*
     * Keep the image inset inside the card.
     */
    padding: 12px 12px 0;
  }
  .blog-card__body {
    padding: 16px 12px 18px;
  }
  .blog-card__meta {
    margin-bottom: 10px;
    font-size: 8px;
  }
  .blog-card__title {
    min-height: 42px;
    font-size: 15px;
  }
  .blog-card__button {
    font-size: 8px;
  }
  .blog-card__arrow {
    width: 13px;
    height: 13px;
  }
  .blog-card__arrow img {
    width: 7px;
    height: 7px;
  }
}
@media (max-width: 900px) {
  .blog-archive__layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .blog-archive__intro {
    max-width: 500px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .blog-card__image {
    padding: 12px 12px 0;
  }
  .blog-card__body {
    padding: 16px 12px 20px;
  }
  .blog-card__title {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .blog-archive__section {
    padding: 100px 0 50px;
  }
  .blog-archive__title {
    font-size: 25px;
  }
  .blog-archive__filters {
    max-width: 320px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .blog-card {
    border-radius: 5px;
  }
  .blog-card__image {
    padding: 12px 12px 0;
  }
  .blog-card__image img {
    width: 100%;
    aspect-ratio: 1.82/1;
    object-fit: cover;
    border-radius: 2px;
  }
  .blog-card__body {
    padding: 16px 12px 20px;
  }
  .blog-card__meta {
    gap: 6px;
    margin-bottom: 12px;
    font-size: 9px;
  }
  .blog-card__dot {
    font-size: 9px;
  }
  .blog-card__title {
    min-height: auto;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.2;
  }
  .blog-card__button {
    gap: 7px;
    padding: 6px 7px;
    font-size: 9px;
  }
  .blog-card__arrow {
    width: 14px;
    height: 14px;
  }
  .blog-card__arrow img {
    width: 7px;
    height: 7px;
  }
}
.blog-single {
  width: 100%;
  color: #071827;
}
.blog-single__hero {
  width: 100%;
  background: #fff;
}
.blog-single__hero img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: cover;
}
.blog-single__content {
  width: 100%;
  padding: 45px 0 70px;
}
.blog-single .container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.blog-single__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  gap: 50px;
  align-items: start;
}
.blog-single__sidebar {
  width: 100%;
  padding-top: 2px;
}
.blog-single__details {
  width: 100%;
  padding: 15px;
  background: #dce7f1;
}
.blog-single__details > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}
.blog-single__details > div:last-child {
  margin-bottom: 0;
}
.blog-single__details strong {
  display: block;
  color: #5d6c7b;
  font-size: 7px;
  line-height: 1.2;
  font-weight: 600;
}
.blog-single__details span {
  display: block;
  color: #101d29;
  font-size: 8px;
  line-height: 1.35;
}
.blog-single__article {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
}
.blog-single__intro {
  width: 100%;
  margin-bottom: 30px;
}
.blog-single__intro p {
  margin: 0 0 10px;
  color: #263644;
  font-size: 14px;
  line-height: 1.6;
}
.blog-single__sections {
  width: 100%;
  margin-top: 25px;
}
.blog-single__section {
  width: 100%;
  margin-bottom: 30px;
}
.blog-single__section h2 {
  margin: 0 0 10px;
  color: #071827;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
.blog-single__section p,
.blog-single__section li {
  color: #263644;
  font-size: 14px;
  line-height: 1.6;
}
.blog-single__section p {
  margin: 0 0 10px;
}
.blog-single__section ul,
.blog-single__section ol {
  margin: 10px 0;
  padding-left: 20px;
}
.blog-single__section a {
  color: inherit;
  text-decoration: underline;
}
.blog-single__body {
  width: 100%;
  max-width: none;
  color: #263644;
  font-size: 14px;
  line-height: 1.6;
}
.blog-single__body h2,
.blog-single__body h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #071827;
}
.blog-single__body p {
  margin-bottom: 12px;
}
.blog-single__body ul,
.blog-single__body ol {
  margin: 10px 0;
  padding-left: 20px;
}
.blog-single__body a {
  color: inherit;
  text-decoration: underline;
}
.blog-single__cta {
  width: 100%;
  margin-top: 45px;
  padding: 25px 30px;
  background: #dce7f1;
}
.blog-single__cta h2 {
  margin: 0 0 8px;
  color: #071827;
  font-size: 16px;
  line-height: 1.3;
}
.blog-single__cta p {
  margin: 0 0 15px;
  color: #263644;
  font-size: 12px;
  line-height: 1.5;
}
.blog-single__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5b84b;
  color: #071827;
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
}
.blog-single__cta a span {
  font-size: 12px;
}

.entry-header {
  width: 100%;
}
.entry-header__category {
  display: block;
  margin-bottom: 8px;
  color: #657585;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.entry-header__title {
  width: 100%;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d1d6da;
  color: #071827;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
}
.entry-header__subtitle {
  margin: 0 0 12px;
  color: #263644;
  font-size: 14px;
  line-height: 1.5;
}
.entry-header__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6b7986;
  font-size: 8px;
}

.related-posts {
  width: 100%;
  padding: 40px 0 50px;
  background: #071a2a;
  color: #fff;
}
.related-posts__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.related-posts__eyebrow {
  font-size: 8px;
  letter-spacing: 0.05em;
}
.related-posts__all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #f5b84b;
  color: #071a2a;
  font-size: 7px;
  text-decoration: none;
}
.related-posts__all span {
  font-size: 10px;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

@media (max-width: 1000px) {
  .blog-single__layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 35px;
  }
}
@media (max-width: 700px) {
  .blog-single__layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .blog-single__sidebar {
    order: 2;
  }
  .blog-single__article {
    order: 1;
  }
  .blog-single__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .blog-single__details {
    grid-template-columns: 1fr;
  }
}
.service-banner {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #0F1D2F;
  color: #ffffff;
}
@media (max-width: 768px) {
  .service-banner {
    min-height: 100vh;
    height: auto;
    overflow: hidden;
  }
}
.service-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .service-banner__media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
}
.service-banner__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-banner__img--desktop {
  display: block;
}
@media (max-width: 768px) {
  .service-banner__img--desktop {
    display: none;
  }
}
.service-banner__img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .service-banner__img--mobile {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
  }
}
.service-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
@media (max-width: 768px) {
  .service-banner__overlay {
    display: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.85) 100%);
  }
}
.service-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 700px;
  box-sizing: border-box;
  padding: 150px 30px 60px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .service-banner__inner {
    min-height: 100svh;
    height: auto;
    padding: 80px 1rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .service-banner__inner {
    min-height: 100svh;
    padding: 60px 1rem 1.25rem;
  }
}
.service-banner__heading {
  align-self: center;
  max-width: 1190px;
  margin: 0;
  padding-top: 10px;
  font-family: "Cinzel", serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.1px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 768px) {
  .service-banner__heading {
    width: 100%;
    max-width: 340px;
    padding-top: 10px;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1px;
  }
}
@media (max-width: 480px) {
  .service-banner__heading {
    max-width: 320px;
    font-size: 32px !important;
    letter-spacing: -0.7px;
  }
}
.service-banner__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .service-banner__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
}
@media (max-width: 480px) {
  .service-banner__footer {
    gap: 1rem;
  }
}
.service-banner__info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  max-width: 730px;
}
@media (max-width: 768px) {
  .service-banner__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: none;
  }
}
.service-banner__label {
  flex: 0 0 130px;
  width: 130px;
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c4c2c0;
}
@media (max-width: 768px) {
  .service-banner__label {
    flex: none;
    width: auto;
  }
}
.service-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
  width: 374px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .service-banner__content {
    width: 100%;
    gap: 1rem;
  }
}
.service-banner__subtext {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.563rem !important;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}
.service-banner__subtext p {
  margin: 0;
  padding: 0;
  color: inherit;
}
@media (max-width: 768px) {
  .service-banner__subtext {
    width: 100%;
    font-size: 1.563rem !important;
  }
}
@media (max-width: 480px) {
  .service-banner__subtext {
    font-size: 20px !important;
    line-height: 1.2;
  }
}
.service-banner__support {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
}
.service-banner__support p {
  margin: 0;
  padding: 0;
  color: inherit;
}
.service-banner__support p + p {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .service-banner__support {
    align-self: flex-start;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .service-banner__support {
    font-size: 16px;
    line-height: 1.4;
  }
}
.service-banner__cta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: flex-start !important;
  gap: 1rem;
  margin: 0;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #ffffff;
  color: #0F1D2F;
  border-radius: 8px;
  font-family: "Inter Tight", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.service-banner__cta:hover {
  transform: translateY(-3px);
  color: #0F1D2F;
}
.service-banner__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .service-banner__cta {
    align-self: flex-start;
    margin-left: 0 !important;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .service-banner__cta {
    align-self: flex-start;
    margin-left: 0 !important;
  }
}
.service-banner__cta-label {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .service-banner__cta-label {
    font-size: 14px !important;
  }
}
.service-banner__cta-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  background: #F1BF5B;
  color: #0F1D2F;
}
.service-banner__cta-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}
@media (max-width: 480px) {
  .service-banner__cta-icon {
    width: 32px;
    height: 32px;
  }
}

.service-overview__row {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 768px) {
  .service-overview__row {
    flex-direction: column;
  }
}
.service-overview__row--overview {
  flex-direction: row;
}
@media (max-width: 768px) {
  .service-overview__row--overview {
    flex-direction: column;
  }
}
.service-overview__row--feasibility {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service-overview__row--feasibility {
    flex-direction: column;
  }
}
.service-overview__panel {
  flex: 0 0 47%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 30px;
  background: #DBE4F4;
  gap: 130px;
}
@media (max-width: 768px) {
  .service-overview__panel {
    flex: none;
    width: 100%;
    padding: 40px 20px;
  }
}
.service-overview__panel--dark {
  background: #0F1D2F;
  color: #ffffff;
  padding: 60px 80px;
}
@media (max-width: 768px) {
  .service-overview__panel--dark {
    padding: 2.5rem 1.25rem;
  }
}
.service-overview__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.service-overview__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 620px;
  margin: 0;
  padding: 0;
  text-align: left;
}
.service-overview__media {
  position: relative;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.service-overview__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .service-overview__media {
    flex: none;
    align-self: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16/10;
  }
  .service-overview__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }
}
.service-overview__logo {
  display: block;
  width: 38px;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  align-self: flex-start;
}
.service-overview__eyebrow {
  margin: 20px 0 10px 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  color: #949AA2;
}
.service-overview__heading {
  width: 100%;
  max-width: 378px;
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.75px;
  text-align: left;
  text-transform: uppercase;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .service-overview__heading {
    max-width: 100%;
    font-size: 1.563rem;
  }
}
.service-overview__panel--dark .service-overview__heading {
  color: #ffffff;
}
.service-overview__subtext {
  width: 100%;
  margin: 0;
  padding: 20px 0 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .service-overview__subtext {
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.094rem;
  }
}
.service-overview__subtext p {
  margin: 0 0 1rem;
  color: inherit;
}
.service-overview__subtext p:last-child {
  margin-bottom: 0;
}
.service-overview__panel--dark .service-overview__subtext {
  color: rgba(255, 255, 255, 0.65);
}
.service-overview__table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 620px;
  gap: 0 30px;
  margin-top: 20px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .service-overview__table {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    padding-top: 15px;
  }
}
.service-overview__table-title {
  grid-column: 1/-1;
  width: 100%;
  margin: 0 0 0.5rem;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
  color: #DBE4F4;
}
.service-overview__row-item {
  display: block;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  padding: 0.75rem 0.25rem;
}
@media (max-width: 768px) {
  .service-overview__row-item {
    padding: 0.75rem 0;
  }
}
.service-overview__row-value {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  color: #DBE4F4;
}
@media (max-width: 768px) {
  .service-overview__row-value {
    font-size: 17px;
  }
}
.service-overview__row-value p {
  margin: 0;
  padding: 0;
  color: inherit;
}
@media (max-width: 768px) {
  .service-overview__row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .service-overview__panel {
    justify-content: flex-start;
  }
  .service-overview__panel--dark {
    justify-content: flex-start;
  }
  .service-overview__inner {
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 30px;
  }
  .service-overview__logo {
    width: 38px;
    margin: 0;
  }
  .service-overview__content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  .service-overview__eyebrow, .service-overview__heading, .service-overview__subtext, .service-overview__table-title {
    text-align: left;
  }
  .service-overview__row-item {
    width: 100%;
  }
  .service-overview__media {
    width: 100%;
    height: auto;
  }
}

.service-process {
  width: 100%;
  padding: 100px 20px 110px 20px;
  background: #ffffff;
  container: 1920px;
}
@media (max-width: 768px) {
  .service-process {
    padding: 50px 0;
  }
}
.service-process__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 86px;
}
@media (max-width: 768px) {
  .service-process__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.service-process__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-process__eyebrow {
  margin: 0 0 7px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #949AA2;
}
.service-process__heading {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #0F1D2F;
}
.service-process__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 129px;
  height: 36px;
  padding: 14px 12px 14px 14px !important;
  background: #F1BF5B;
  color: #0F1D2F;
  border-radius: 5px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .service-process__cta {
    min-width: 120px;
  }
}
.service-process__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: #ffffff;
  color: #0f1d2f;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1;
}
.service-process__steps {
  display: grid;
  grid-template-columns: repeat(var(--steps, 6), minmax(0, 1fr));
  width: 100%;
  height: 198px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .service-process__steps {
    grid-template-columns: repeat(min(var(--steps, 6), 3), minmax(0, 1fr));
    height: auto;
  }
}
@media (max-width: 768px) {
  .service-process__steps {
    grid-template-columns: repeat(min(var(--steps, 6), 2), minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .service-process__steps {
    grid-template-columns: 1fr;
  }
}
.service-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 35px;
  border-left: 1px solid #C9D0DB;
}
.service-process__step:last-child {
  border-right: 1px solid #C9D0DB;
}
@media (max-width: 1024px) {
  .service-process__step {
    height: 200px;
    padding: 0 28px;
  }
  .service-process__step:nth-child(3n) {
    border-right: 1px solid #C9D0DB;
  }
  .service-process__step:nth-child(n+4) {
    border-top: 1px solid #C9D0DB;
  }
}
@media (max-width: 768px) {
  .service-process__step {
    height: 210px;
    padding: 0 24px;
  }
  .service-process__step:nth-child(3n) {
    border-right: 0;
  }
  .service-process__step:nth-child(2n) {
    border-right: 1px solid #e3e7ec;
  }
  .service-process__step:nth-child(n+3) {
    border-top: 1px solid #e3e7ec;
  }
}
@media (max-width: 576px) {
  .service-process__step {
    height: auto;
    min-height: 190px;
    padding: 0 0 30px 0;
    border-left: 0;
    border-right: 0 !important;
    border-top: 0;
    border-bottom: 1px solid #e3e7ec;
  }
  .service-process__step:last-child {
    border-right: 0 !important;
    border-bottom: 0;
  }
}
.service-process__step-number {
  display: block;
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.75px;
  color: #0F1D2F;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .service-process__step-number {
    font-size: 30px;
  }
}
.service-process__step-body {
  margin-top: auto;
  padding: 0;
}
.service-process__step-title {
  margin: 0 0 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #293646;
}
.service-process__step-desc {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.2;
  color: #293646;
}

.service-stories {
  padding: 102px 20px;
  background: #DBE4F4;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100vw;
}
@media (max-width: 768px) {
  .service-stories {
    padding: 50px 0px;
  }
}
.service-stories__inner {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  color: #293646;
}
.service-stories__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #949AA2;
}
.service-stories__heading {
  margin: 0 0 1.5rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.563rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #0F1D2F;
}
@media (max-width: 576px) {
  .service-stories__heading {
    font-size: 1.5rem;
  }
}
.service-stories__divider {
  margin: 40px 0 60px 0;
  border: none;
  border-top: 0.5px solid #FFFFFF;
}
@media (max-width: 768px) {
  .service-stories__divider {
    margin: 1.5rem 0;
  }
}
.service-stories__slider {
  display: flex;
  align-items: flex-start;
  gap: 350px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .service-stories__slider {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .service-stories__slider {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
  }
}
.service-stories__nav {
  flex: 0 0 auto;
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .service-stories__nav {
    order: 2;
    align-self: flex-start;
  }
}
.service-stories__nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5px;
  background: #C9D0DB;
  color: #293646;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.service-stories__nav-btn:hover:not(:disabled) {
  background: #ffffff;
}
.service-stories__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.service-stories__viewport {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.service-stories__track {
  display: flex;
  transition: transform 0.4s ease;
}
.service-stories__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-stories__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.service-stories__row--bottom {
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(41, 54, 70, 0.15);
}
.service-stories__heading-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  max-width: 100%;
}
.service-stories__card-title {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.563rem;
  font-weight: 600;
  color: #293646;
  overflow-wrap: break-word;
  word-break: break-word;
}
.service-stories__address {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  color: #79818B;
  overflow-wrap: break-word;
  word-break: break-word;
}
.service-stories__year {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  color: #949AA2;
  white-space: nowrap;
}
.service-stories__desc {
  display: block;
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.563rem;
  font-weight: 600;
  line-height: 1.3;
  color: #293646;
  max-width: 829px !important;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 768px) {
  .service-stories__desc {
    font-size: 1.25rem;
  }
}
.service-stories__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .service-stories__stats {
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .service-stories__stats {
    gap: 1rem;
  }
}
.service-stories__stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.service-stories__stat-value {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 1.094rem;
  color: #293646;
}
.service-stories__stat-label {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  color: #79818B;
}
.service-stories__rating {
  display: flex;
  gap: 2px;
}
.service-stories__star {
  font-size: 1.25rem;
  color: #e0e0e0;
}
.service-stories__star.is-filled {
  color: #F1BF5B;
}

.service-experience {
  background: #f2c66d;
}
.service-experience__inner {
  display: flex;
  align-items: stretch;
  gap: 70px;
  padding: 0;
  color: #293646 !important;
}
@media (max-width: 768px) {
  .service-experience__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.service-experience__media {
  flex: 1;
  min-width: 0;
  padding: 0;
  margin: 0;
}
.service-experience__media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-experience__media {
    width: 100%;
  }
  .service-experience__media img {
    height: auto;
  }
}
.service-experience__content {
  flex: 1;
  min-width: 0;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .service-experience__content {
    padding: 0 20px 50px;
  }
}
.service-experience__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0F1D2F;
}
.service-experience__heading {
  margin: 0 0 1.5rem;
  max-width: 550px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.563rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .service-experience__heading {
    max-width: 100%;
  }
}
.service-experience__text {
  margin: 0;
  max-width: 650px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #0F1D2F;
}
.service-experience__text p {
  margin: 0 0 1rem;
}
.service-experience__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .service-experience__text {
    max-width: 100%;
  }
}
.service-experience__text + .service-experience__points {
  margin-top: 2rem;
}
.service-experience__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 800px;
  margin: 0;
  padding: 15px 0 0 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  color: #293646 !important;
}
.service-experience__point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
}
.service-experience__point-icon {
  flex: 0 0 32px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.service-experience__point-icon img {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  object-fit: contain;
}
.service-experience__point-content {
  min-width: 0;
  flex: 1;
}
.service-experience__point-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  color: #293646;
}
.service-experience__point-desc {
  margin: 0.5rem 0 0 0;
  padding: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.4;
  color: #293646 !important;
}
.service-experience__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #ffffff;
  color: #0F1D2F;
  border-radius: 8px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-experience__cta:hover {
  transform: translateY(-3px);
}
.service-experience__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 5px;
  background: #f1bf5b;
}

.service-faqs {
  padding: 4rem 0;
  background: #C9D0DB;
}
.service-faqs__header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.service-faqs__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #949AA2;
}
.service-faqs__heading {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.563rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #0F1D2F;
}
.service-faqs__accordion {
  width: 100%;
  max-width: min(1206px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-faqs__item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.service-faqs__item[open] .service-faqs__icon-plus {
  display: none;
}
.service-faqs__item[open] .service-faqs__icon-minus {
  display: block;
}
.service-faqs__item[open] .service-faqs__body {
  border-radius: 5px 5px 0 0;
}
.service-faqs__item[open] .service-faqs__number {
  align-items: flex-start;
  padding-top: 8px;
}
.service-faqs__item[open] .service-faqs__description {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 35px;
}
.service-faqs__item:not([open]) .service-faqs__description {
  grid-template-rows: 0fr;
  opacity: 0;
  padding-bottom: 0;
}
.service-faqs__trigger {
  display: flex;
  align-items: stretch;
  min-height: 30px;
  padding-left: 50px;
  cursor: pointer;
  list-style: none;
}
.service-faqs__trigger::-webkit-details-marker {
  display: none;
}
.service-faqs__trigger::marker {
  display: none;
}
.service-faqs__trigger:focus-visible {
  outline: 2px solid #949AA2;
  outline-offset: 2px;
}
.service-faqs__number {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F1D2F;
  border-radius: 5px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1;
}
.service-faqs__body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 12px 12px 26px;
  background: #DBE4F4;
  border-radius: 5px;
}
.service-faqs__title {
  margin: 0;
  color: #293646;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.54px;
}
.service-faqs__icon {
  width: 20px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F1D2F;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.service-faqs__icon-minus {
  display: none;
  font-size: 26px;
}
.service-faqs__description {
  display: grid;
  grid-template-rows: 0fr;
  margin-left: 50px;
  padding-right: 35px;
  padding-left: 26px;
  overflow: hidden;
  background: #dbe4f4;
  border-radius: 0 0 5px 5px;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
}
.service-faqs__description > * {
  min-height: 0;
  margin: 0;
}
.service-faqs__description p {
  margin: 0;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.2;
}

.services-banner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
}
@media (max-width: 768px) {
  .services-banner {
    min-height: 100vh;
  }
}
.services-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .services-banner__img--desktop {
    display: none;
  }
}
.services-banner__img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .services-banner__img--mobile {
    display: block;
    object-position: center;
  }
}
.services-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(181deg, #0F1D2F 0%, rgba(0, 0, 0, 0) 50%, #0F1D2F 100%);
}
.services-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 150px 30px 60px;
  box-sizing: border-box;
  color: #fff;
}
@media (max-width: 768px) {
  .services-banner__inner {
    min-height: 100vh;
    padding: 90px 1rem 1.5rem;
  }
}
.services-banner__heading {
  align-self: center;
  margin: 0;
  width: 1165px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -2.1px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .services-banner__heading {
    font-size: 34px;
    width: 384px;
  }
}
.services-banner__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .services-banner__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
}
.services-banner__info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 730px;
}
@media (max-width: 768px) {
  .services-banner__info {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.services-banner__label {
  flex-shrink: 0;
  width: 130px;
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C4C2C0;
}
@media (max-width: 768px) {
  .services-banner__label {
    width: auto;
  }
}
.services-banner__subtext {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}
.services-banner__subtext p {
  margin: 0;
  color: inherit;
}
.services-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #ffffff;
  color: #0F1D2F;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.services-banner__cta:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .services-banner__cta {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    align-items: center;
    align-self: start;
  }
}
.services-banner__cta-label {
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
}
.services-banner__cta-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #F1BF5B;
  color: #0F1D2F;
}
.services-banner__cta-icon svg {
  display: block;
}

.whatwedo {
  width: 100%;
  background: #DBE4F4;
  overflow: hidden;
}
.whatwedo__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 190px;
  align-items: center;
}
.whatwedo__media {
  width: 100%;
  min-width: 0;
}
.whatwedo__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.whatwedo__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.whatwedo__eyebrow {
  margin: 0 0 10px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #949AA2;
}
.whatwedo__heading {
  margin: 10px 0;
  color: #0F1D2F;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  max-width: 383px;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.whatwedo__subtext {
  max-width: 473px;
  margin: 15px 0 clamp(25px, 3vw, 35px);
  color: #0F1D2F;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(16px, 1.4vw, 1.25rem);
  line-height: 1.4;
}
.whatwedo__subtext p {
  margin: 0 0 16px;
}
.whatwedo__subtext p:last-child {
  margin-bottom: 0;
}
.whatwedo__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #ffffff;
  color: #0F1D2F;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.whatwedo__cta:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .whatwedo__cta {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    align-items: center;
    align-self: start;
  }
}
.whatwedo__cta-label {
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
}
.whatwedo__cta-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #F1BF5B;
  color: #0F1D2F;
}
.whatwedo__cta-icon svg {
  display: block;
}
@media (max-width: 1100px) {
  .whatwedo__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
  }
  .whatwedo__heading {
    font-size: 1.563rem;
  }
  .whatwedo__subtext {
    font-size: clamp(16px, 1.6vw, 20px);
  }
}
@media (max-width: 900px) {
  .whatwedo__inner {
    max-width: 990px;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 30px;
  }
  .whatwedo__media {
    order: 1;
  }
  .whatwedo__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .whatwedo__content {
    order: 2;
  }
  .whatwedo__heading {
    max-width: 900px;
    font-size: 1.563rem;
  }
  .whatwedo__subtext {
    max-width: 700px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .whatwedo__inner {
    width: 100%;
    padding: 45px 20px 50px;
    gap: 30px;
  }
  .whatwedo__media img {
    aspect-ratio: auto;
    object-fit: contain;
  }
  .whatwedo__eyebrow {
    margin-bottom: 6px;
    font-size: 1.125rem;
  }
  .whatwedo__heading {
    margin: 8px 0 15px;
    font-size: 1.563rem;
    line-height: 1.05;
  }
  .whatwedo__subtext {
    margin: 10px 0 25px;
    font-size: 1.094rem;
    line-height: 1.45;
  }
  .whatwedo__subtext p {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .whatwedo__inner {
    padding: 35px 16px 40px;
    gap: 25px;
  }
  .whatwedo__heading {
    font-size: 1.563rem;
    max-width: 900px;
  }
  .whatwedo__subtext {
    font-size: 1.125rem;
  }
}

.services-grid {
  width: 100%;
  background: #C9D0DB;
  padding: 80px 15px;
}
.services-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.services-grid__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .services-grid__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.services-grid__intro {
  min-width: 0;
}
.services-grid__eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #949AA2;
}
.services-grid__heading {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.563rem;
  line-height: 1.2;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #0F1D2F;
}
.services-grid__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #F1BF5B;
  color: #0F1D2F;
  border-radius: 8px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.services-grid__cta:hover {
  transform: translateY(-3px);
}
.services-grid__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #ffffff;
}
.services-grid__cta-icon svg {
  display: block;
}
.services-grid__slider {
  position: relative;
  width: 100%;
}
.services-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.services-grid__card {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1297/778;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
}
.services-grid__card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.services-grid__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.services-grid__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.services-grid__card-body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 20px;
  padding: 22px 30px;
  background: rgba(15, 29, 47, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.services-grid__card-text {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}
.services-grid__card-title {
  display: block;
  margin: 0 0 17px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
}
.services-grid__card-desc {
  display: -webkit-box;
  max-width: 570px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
}
.services-grid__card-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background: #F1BF5B;
  color: #0F1D2F;
  border-radius: 5px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.services-grid__card-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #ffffff;
}
.services-grid__card-cta-icon svg {
  display: block;
}
.services-grid__card-arrow {
  display: none;
}
.services-grid__controls {
  display: none;
}
@media (max-width: 768px) {
  .services-grid {
    padding: 2.5rem 0;
  }
  .services-grid__slider {
    width: 100%;
    overflow: hidden;
  }
  .services-grid__list {
    display: flex;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid__list::-webkit-scrollbar {
    display: none;
  }
  .services-grid__card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    /*
     * Mobile screenshot is approximately
     * 250 x 228.
     */
    aspect-ratio: 1.1/1;
    border-radius: 10px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .services-grid__card-media {
    inset: 0;
  }
  .services-grid__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*
     * Adjust this if you want to change
     * which portion of the image is visible.
     */
    object-position: center center;
  }
  .services-grid__card-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #F1BF5B;
    color: #0F1D2F;
    pointer-events: none;
  }
  .services-grid__card-arrow svg {
    display: block;
    width: 12px;
    height: 12px;
  }
  .services-grid__card-body {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 8px;
    display: block;
    margin: 10px 8px;
    padding: 15px 15px;
    border-radius: 10px;
    background: rgba(15, 29, 37, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(18px);
  }
  .services-grid__card-title {
    display: block;
    margin: 0 0 3px;
    font-family: "Inter Tight", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
  }
  .services-grid__card-desc {
    display: -webkit-box;
    max-width: none;
    margin: 0 0 10px;
    overflow: hidden;
    font-family: "Inter Tight", sans-serif;
    font-size: 15.5px;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.82);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .services-grid__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 6px 10px 6px 13px;
    background: #F1BF5B;
    color: #0F1D2F;
    border-radius: 5px;
    font-family: "Inter Tight", sans-serif;
    font-size: 13.5px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .services-grid__card-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 2px;
    background: #ffffff;
  }
  .services-grid__card-cta-icon svg {
    width: 12px;
    height: 12px;
  }
  .services-grid__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 1.25rem;
  }
  .services-grid__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: #F1BF5B;
    color: #0F1D2F;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .services-grid__arrow:hover {
    transform: translateY(-2px);
  }
  .services-grid__arrow:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
  }
  .services-grid__arrow svg {
    display: block;
  }
  .services-grid__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .services-grid__dot {
    display: block;
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 29, 47, 0.3);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
  }
  .services-grid__dot.is-active {
    width: 20px;
    border-radius: 10px;
    background: #F1BF5B;
  }
}
@media (max-width: 576px) {
  .services-grid__card {
    aspect-ratio: 1.1/1;
    border-radius: 10px;
  }
  .services-grid__card-body {
    bottom: 10px;
    margin: 0 7px;
    padding: 12px;
  }
  .services-grid__card-title {
    font-size: 17px;
  }
  .services-grid__card-desc {
    font-size: 15.5px;
  }
  .services-grid__card-cta {
    font-size: 13.5px;
  }
  .services-grid__card-arrow {
    width: 22px;
    height: 22px;
  }
  .services-grid__card-arrow svg {
    width: 14px;
    height: 14px;
  }
}

.services-approach {
  width: 100%;
  background: #ffffff;
  color: #0F1D2F;
  container: 1920px;
}
.services-approach__inner {
  width: 100%;
}
.services-approach__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #C9D0DB;
  padding: 80px 30px 30px 30px;
}
@media (max-width: 768px) {
  .services-approach__header {
    padding: 40px 0px;
  }
}
.services-approach__intro {
  max-width: 550px;
}
.services-approach__label {
  display: block;
  margin: 0 0 7px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #949AA2;
  text-transform: uppercase;
}
.services-approach__heading {
  margin: 0 0 5px;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.75px;
  color: #0F1D2F;
}
.services-approach__subtext {
  max-width: 667px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #0F1D2F;
}
.services-approach__subtext p {
  margin: 0 0 4px;
}
.services-approach__subtext p:last-child {
  margin-bottom: 0;
}
.services-approach__subtext strong {
  font-weight: 600;
}
.services-approach__subtext a {
  color: inherit;
}
.services-approach__header-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding: 12px 12px 12px 14px;
  background: #F1BF5B;
  color: #0F1D2F;
  border-radius: 5px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.services-approach__header-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #ffffff;
}
.services-approach__header-cta-icon svg {
  display: block;
  width: 11px;
  height: 11px;
}
.services-approach__list {
  width: 100%;
}
.services-approach__item {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 260px;
  align-items: center;
  padding: 40px 30px 80px 30px;
  border-bottom: 1px solid #C9D0DB;
  background: #ffffff;
  transition: background-color 0.25s ease;
}
.services-approach__item:hover {
  background: rgba(201, 208, 219, 0.12);
}
.services-approach__number {
  align-self: start;
  padding-top: 2px;
  font-family: "Cinzel", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.35px;
  color: #0F1D2F;
}
.services-approach__content {
  min-width: 0;
  max-width: 520px;
}
.services-approach__item-title {
  margin: 0 0 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.54;
  color: #0F1D2F;
  text-transform: uppercase;
}
.services-approach__item-description {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.2;
  color: #293646;
}
.services-approach__item-description p {
  margin: 0 0 4px;
}
.services-approach__item-description p:last-child {
  margin-bottom: 0;
}
.services-approach__item-description ul,
.services-approach__item-description ol {
  margin: 0 0 4px;
  padding-left: 18px;
}
.services-approach__item-description a {
  color: inherit;
}
.services-approach__item-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
.services-approach__item-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #293646;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.services-approach__item-cta:hover {
  gap: 12px;
}
.services-approach__item-cta svg {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 17px;
}
@media (max-width: 768px) {
  .services-approach__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: auto;
    padding: 40px 20px;
  }
  .services-approach__intro {
    max-width: 100%;
  }
  .services-approach__label {
    font-size: 1.094rem;
    margin-bottom: 6px;
  }
  .services-approach__heading {
    font-size: 22px;
    line-height: 1.2;
  }
  .services-approach__subtext {
    max-width: 100%;
    font-size: 1.094rem;
    line-height: 1.2;
  }
  .services-approach__header-cta {
    margin-top: 0;
    align-self: self-start;
  }
  .services-approach__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2;
    min-height: auto;
    padding: 30px 20px;
  }
  .services-approach__item:last-child {
    border-bottom: none;
    padding-bottom: 50px;
  }
  .services-approach__number {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
    margin-bottom: 18px;
    font-size: 45px;
    line-height: 1;
  }
  .services-approach__content {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    padding: 10px 0;
  }
  .services-approach__item-title {
    margin: 0 0 7px;
    font-size: 1.125rem;
    line-height: 1.2;
  }
  .services-approach__item-description {
    font-size: 1.094rem;
    line-height: 1.2;
    padding-top: 2px;
  }
  .services-approach__item-action {
    grid-column: 1;
    grid-row: 3;
    justify-content: flex-start;
    margin-top: 18px;
  }
  .services-approach__item-cta {
    font-size: 15px;
  }
}

.asset-mgmt__panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px;
  background: #293646;
}
@media (max-width: 768px) {
  .asset-mgmt__panel {
    padding: 3rem 1rem;
  }
}
.asset-mgmt__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1320px;
  max-width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .asset-mgmt__pattern {
    width: 980px;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
  }
}
.asset-mgmt__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71px;
  max-width: 560px;
  text-align: center;
}
@media (max-width: 768px) {
  .asset-mgmt__inner {
    gap: 2rem;
  }
}
.asset-mgmt__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.asset-mgmt__eyebrow {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9CCD0;
}
.asset-mgmt__heading {
  margin: 0 0 1.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #ffffff;
}
.asset-mgmt__subtext {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
}
.asset-mgmt__subtext p {
  margin: 0;
  color: inherit;
}
.asset-mgmt__subtext p:not(:last-child) {
  margin-bottom: 0.75rem;
}
.asset-mgmt__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .asset-mgmt__media img {
    height: 320px;
    object-fit: cover;
    object-position: center;
  }
}

.projects-hero {
  width: 100%;
  overflow: hidden;
}
.projects-hero__heading {
  width: 100%;
  padding: 210px 1rem 67px;
  background-color: #0F1D2F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.projects-hero__title {
  margin: 0;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.projects-hero__media {
  position: relative;
  width: 100%;
  height: calc(100vh - 350px);
  min-height: 600px;
  overflow: hidden;
}
.projects-hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.projects-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 29, 47, 0.95) 0%, rgba(15, 29, 47, 0.65) 25%, rgba(15, 29, 47, 0.2) 55%, rgba(15, 29, 47, 0) 75%);
  pointer-events: none;
}
.projects-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.projects-hero__content {
  position: absolute;
  z-index: 1;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 3rem;
}
.projects-hero__subheading {
  margin: 0;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.projects-hero__description {
  display: block;
  max-width: 800px;
  margin-left: auto;
  color: #ffffff;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .projects-hero__media {
    height: calc(100vh - 350px);
  }
}
@media (max-width: 768px) {
  .projects-hero__heading {
    padding: 150px 1rem 50px;
  }
  .projects-hero__title {
    font-size: 1.563rem;
  }
  .projects-hero__media {
    position: relative;
    width: 100%;
    height: calc(100svh - 240px);
    min-height: 500px;
    overflow: hidden;
  }
  .projects-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .projects-hero__image::after {
    display: block;
    background: linear-gradient(to top, rgba(15, 29, 47, 0.95) 0%, rgba(15, 29, 47, 0.65) 30%, rgba(15, 29, 47, 0.2) 65%, rgba(15, 29, 47, 0) 100%);
  }
  .projects-hero__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }
  .projects-hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: transparent;
  }
  .projects-hero__subheading {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .projects-hero__description {
    max-width: none;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .projects-hero__heading {
    padding: 130px 1rem 40px;
  }
  .projects-hero__title {
    font-size: 1.563rem;
  }
  .projects-hero__media {
    height: calc(100svh - 210px);
    min-height: 480px;
  }
  .projects-hero__content {
    padding: 1.5rem 1rem;
  }
  .projects-hero__subheading {
    font-size: 1.25rem;
  }
  .projects-hero__description {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.projects {
  width: 100%;
  padding: 4rem 0;
  background-color: #DBE4F4;
}
.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 1.25rem;
  gap: 2rem;
}
.projects__header-left {
  flex: 1;
}
.projects__heading {
  margin: 0;
  color: #0F1D2F;
  font-family: "Cinzel", serif;
  font-size: 2.188rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.projects__filters {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.projects__filter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.projects__filter label {
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.projects__filter select {
  min-width: 220px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 0;
  border-radius: 5px;
  background-color: #d0dbef;
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.projects__filter select:focus {
  outline: none;
}
.projects__divider {
  width: 100%;
  margin: 2rem 0 3rem;
  border: 0;
  border-top: 1px solid #222c3a;
}
.projects__grid {
  display: grid;
  padding: 0 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 4rem;
}
.projects__item {
  min-width: 0;
}
.projects__empty {
  grid-column: 1/-1;
  padding: 4rem 0;
  text-align: center;
  color: #949AA2;
  font-family: "Inter Tight", sans-serif;
}

.projects-card {
  width: 100%;
}
.projects-card__image {
  width: 100%;
  overflow: hidden;
}
.projects-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: all 0.4s ease;
}
.projects-card:hover .projects-card__image img {
  transform: scale(1.03);
}
.projects-card__content {
  width: 100%;
}
.projects-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.projects-card__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.projects-card__tag-year {
  color: #5f6568;
  background-color: #bcc5d3;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
}
.projects-card__tag-category {
  color: #5f6568;
  background-color: #d0dbef;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
}
.projects-card__link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #0F1D2F;
  background-color: #bcc5d3;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  transition: all 0.2s ease;
  gap: 0.75rem;
}
.projects-card__title {
  margin: 0;
  padding: 1.5rem 0 0.5rem;
  color: #0F1D2F;
  font-family: "DM Sans", sans-serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.projects-card__description {
  padding-bottom: 1rem;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.4;
}
.projects-card__details {
  width: 100%;
}
.projects-card__detail {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 0.75rem 0 0.25rem;
  border-bottom: 1px solid #9aa9af;
}
.projects-card__detail-label {
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.projects-card__detail-value {
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
}
.projects-card__detail-value-status {
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .projects-card__title {
    font-size: 1.25rem;
  }
  .projects-card__detail {
    grid-template-columns: 120px minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 1.25rem 0;
  }
  .projects__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 0.25rem;
  }
  .projects__heading {
    font-size: 1.563rem;
  }
  .projects__filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
  }
  .projects__filter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex: 1;
  }
  .projects__filter label {
    flex-shrink: 0;
    font-size: 0.75rem;
  }
  .projects__filter select {
    width: 100%;
    min-width: 0;
    max-width: 160px;
  }
  .projects__divider {
    margin: 1.5rem 0 2rem;
  }
  .projects__grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    padding: 0 0.25rem;
  }
  .projects-card__top {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .projects-card__tag-year {
    font-size: 0.75rem;
  }
  .projects-card__tag-category {
    font-size: 0.75rem;
  }
  .projects-card__link {
    font-size: 0.875rem;
  }
  .projects-card__title {
    padding: 0.5rem 0;
    font-size: 1.25rem;
  }
  .projects-card__description {
    font-size: 0.875rem;
  }
  .projects-card__detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .projects-card__detail-value {
    text-align: left;
  }
}
.single-project__banner {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 0 0;
  background-color: #0F1D2F;
}
.single-project__banner-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.single-project__banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 29, 47, 0.35) 0%, rgba(15, 29, 47, 0.05) 35%, rgba(15, 29, 47, 0.15) 55%, rgba(15, 29, 47, 0.75) 100%);
  pointer-events: none;
}
.single-project__banner__image-desktop, .single-project__banner__image-mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-project__banner__image-mobile {
  display: none;
}
.single-project__banner-title {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 630px;
  margin: 0;
  padding: 150px 1.25rem 0;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.single-project__banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 1.25rem;
  background: rgba(15, 29, 47, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(14px);
}
.single-project__banner-content-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-project__banner-description {
  max-width: 455px;
  margin: 0;
  color: #ffffff;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
.single-project__banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #0F1D2F;
  background-color: #F1BF5B;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.single-project__banner-cta img {
  display: block;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .single-project__banner {
    min-height: 90svh;
  }
  .single-project__banner-image::after {
    background: linear-gradient(to bottom, rgba(15, 29, 47, 0.45) 0%, rgba(15, 29, 47, 0.05) 35%, rgba(15, 29, 47, 0.2) 55%, rgba(15, 29, 47, 0.8) 100%);
  }
  .single-project__banner__image-desktop {
    display: none;
  }
  .single-project__banner__image-mobile {
    display: block;
  }
  .single-project__banner-title {
    max-width: 80%;
    padding: 80px 0 0;
    font-size: 2.188rem;
    line-height: 1.1;
  }
  .single-project__banner-content-inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
  .single-project__banner-description {
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
  }
  .single-project__banner-cta {
    width: fit-content;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
}

.single-project__row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .single-project__row {
    flex-direction: column;
    min-height: 0;
  }
}
.single-project__row--overview {
  flex-direction: row;
}
@media (max-width: 768px) {
  .single-project__row--overview {
    flex-direction: column;
  }
}
.single-project__panel {
  flex: 0 0 43%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 4rem 4rem 2.5rem;
  background: #DBE4F4;
  gap: 130px;
}
@media (max-width: 768px) {
  .single-project__panel {
    flex: 1 1 auto;
    padding: 2.5rem 1.25rem;
    gap: 60px;
  }
}
.single-project__panel--dark {
  background: #0F1D2F;
  color: #ffffff;
  padding: 4rem 2.5rem 4rem 4rem;
}
@media (max-width: 768px) {
  .single-project__panel--dark {
    padding: 2.5rem 1.25rem;
  }
}
.single-project__content {
  display: flex;
  flex-direction: column;
}
.single-project__media {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.single-project__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
}
@media (max-width: 768px) {
  .single-project__media {
    min-height: 320px;
  }
}
.single-project__logo {
  width: 38px;
  height: auto;
  flex-shrink: 0;
}
.single-project__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #949AA2;
}
.single-project__title {
  margin: 0 0 1.25rem;
  font-family: "Cinzel", serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .single-project__title {
    font-size: 1.563rem;
    max-width: 100%;
  }
}
.single-project__panel--dark .single-project__title {
  color: #ffffff;
}
.single-project__description {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #0F1D2F;
}
@media (max-width: 768px) {
  .single-project__description {
    font-size: 1.094rem;
  }
}
.single-project__description p {
  margin: 0 0 1rem;
  color: inherit;
}
.single-project__description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-project__description {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}
.single-project__panel--dark .single-project__description {
  color: rgba(255, 255, 255, 0.65);
}
.single-project__table {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .single-project__table {
    padding-top: 20px;
  }
}
.single-project__row-item {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .single-project__row-item {
    gap: 0.5rem;
  }
}
.single-project__row-label {
  flex: 0 0 220px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  color: #DBE4F4;
}
@media (max-width: 768px) {
  .single-project__row-label {
    flex-basis: 140px;
    font-size: 17px;
  }
}
.single-project__row-value {
  flex: 1 1 auto;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  color: #DBE4F4;
}
@media (max-width: 768px) {
  .single-project__row-value {
    font-size: 17px;
  }
}
.single-project__row-value p {
  margin: 0;
  color: inherit;
}

.single-project__gallery {
  width: 100%;
  padding: 106px 1.25rem;
  background-color: #293646;
}
.single-project__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.single-project__gallery-item {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.single-project__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.single-project__gallery-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .single-project__gallery {
    padding: 3rem 0;
  }
  .single-project__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.single-project__highlights {
  width: 100%;
  padding: 4rem 1.25rem;
  background-color: #c9d0db;
}
.single-project__highlights-grid {
  display: grid;
  grid-template-columns: minmax(600px, 0.85fr) minmax(0, 1.5fr);
  align-items: start;
  gap: 4rem;
}
.single-project__highlights-card {
  position: sticky;
  top: 2rem;
  width: 100%;
  padding: 2rem;
  background-color: #DBE4F4;
  border-radius: 5px;
}
.single-project__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
.single-project__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single-project__tag-year, .single-project__tag-category {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}
.single-project__tag-year {
  background-color: #bcc5d3;
}
.single-project__tag-category {
  background-color: #d0dbef;
}
.single-project__title {
  margin: 0;
  padding: 2rem 0 0.75rem;
  color: #0F1D2F;
  font-family: "DM Sans", sans-serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
}
.single-project__description {
  padding-bottom: 1.5rem;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.4;
}
.single-project__description p {
  margin: 0 0 0.75rem;
}
.single-project__description p:last-child {
  margin-bottom: 0;
}
.single-project__details {
  width: 100%;
}
.single-project__detail {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.5rem 0 0.25rem;
  border-bottom: 1px solid #9aa9af;
}
.single-project__detail-label {
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}
.single-project__detail-value {
  color: #5f6568;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}
.single-project__detail-value--status {
  text-transform: uppercase;
}
.single-project__architecture {
  min-width: 0;
  padding: 1rem 1.25rem 0;
}
.single-project__architecture-intro {
  max-width: 900px;
  padding-bottom: 3rem;
}
.single-project__architecture-eyebrow {
  display: block;
  margin: 0 0 1rem;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  font-weight: 500;
  text-transform: uppercase;
}
.single-project__architecture-title {
  margin: 0 0 1.5rem;
  color: #0F1D2F;
  font-family: "DM Sans", sans-serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.single-project__architecture-description {
  max-width: 800px;
  margin: 0;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.4;
}
.single-project__architecture-description p {
  margin: 0 0 1rem;
}
.single-project__architecture-description p:last-child {
  margin-bottom: 0;
}
.single-project__section-title {
  margin: 0 0 1.25rem;
  color: #0F1D2F;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
.single-project__key-features {
  padding: 1.25rem 0;
}
.single-project__features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-project__features-list li {
  width: 40%;
  padding: 0 0 0.25rem;
  position: relative;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  line-height: 1.4;
  border-bottom: 1px solid #9aa9af;
}
.single-project__key-facts {
  padding-top: 3rem;
}
.single-project__facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 80%;
}
.single-project__fact {
  min-width: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-project__fact-value {
  display: block;
  margin-bottom: 0.5rem;
  color: #0F1D2F;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.563rem;
  font-weight: 600;
  line-height: 1.2;
}
.single-project__fact-label {
  display: block;
  color: #293646;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.094rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .single-project__highlights {
    padding: 2rem 0.25rem;
  }
  .single-project__highlights-grid {
    grid-template-columns: 1fr;
  }
  .single-project__highlights-card {
    position: static;
    padding: 1.5rem;
  }
  .single-project__title {
    padding-top: 1.5rem;
    font-size: 1.094rem;
  }
  .single-project__description {
    font-size: 0.875rem;
  }
  .single-project__detail {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .single-project__detail-value {
    text-align: left;
  }
  .single-project__architecture {
    padding: 0;
  }
  .single-project__architecture-intro {
    padding-bottom: 2rem;
  }
  .single-project__architecture-title {
    font-size: 1.5rem;
  }
  .single-project__architecture-description {
    font-size: 0.875rem;
  }
  .single-project__key-features {
    padding: 1.5rem 0;
  }
  .single-project__features-list {
    gap: 0.75rem;
  }
  .single-project__features-list li {
    width: 100%;
  }
  .single-project__key-facts {
    padding-top: 1.5rem;
  }
  .single-project__facts-grid {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
  }
  .single-project__fact {
    min-height: auto;
    padding: 0.75rem;
  }
  .single-project__fact-value {
    font-size: 1.094rem;
  }
  .single-project__fact-label {
    font-size: 0.75rem;
  }
}

/*# sourceMappingURL=main.css.map */
