@charset "UTF-8";
/* ==========================================
   VARIABLES
========================================== */
/* ==========================================
   HERO
========================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 40em;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  touch-action: pan-y;
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 33.333333%;
  width: 33.333333%;
  height: 100%;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: -2em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.08) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 35%, rgba(0, 0, 0, 0.3) 100%);
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}
.hero-slide.active .hero-label,
.hero-slide.active .hero-title,
.hero-slide.active .hero-description,
.hero-slide.active .hero-link {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.active .hero-title {
  transition-delay: 0.05s;
}
.hero-slide.active .hero-description {
  transition-delay: 0.2s;
}
.hero-slide.active .hero-link {
  transition-delay: 0.3s;
}
.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-right: 2.25em;
  padding-left: 2.25em;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 2.25em;
  width: min(36em, 45vw);
  transform: translateY(-50%);
}
.hero-label {
  display: block;
  margin-bottom: 1.5em;
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.7s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.hero-title {
  margin: 0;
  font-size: clamp(4.5em, 7vw, 7em);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.055em;
  opacity: 0;
  transform: translateY(1em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-description {
  max-width: 27em;
  margin: 2em 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.7s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.hero-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 1.75em;
  color: #ffffff;
  font-size: 1em;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(1.5em);
  transition: opacity 0.7s ease 0.25s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, gap 0.35s ease;
}
.hero-link::after {
  position: absolute;
  width: 5em;
  height: 1px;
  margin-top: 1.8em;
  margin-left: 1.4em;
  background: #ffffff;
  content: "";
  transform-origin: left;
  transition: transform 0.35s ease;
}
.hero-link:hover {
  gap: 0.9em;
  color: #ffffff;
}
.hero-link:hover::after {
  transform: scaleX(1.25);
}
.hero-link-icon {
  font-size: 0.8em;
}
.hero-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25em 5em;
}
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 1em;
  text-decoration: none;
  transition: transform 0.35s ease;
}
.hero-logo span {
  margin-top: -0.15em;
  font-size: 1.4em;
  font-weight: 700;
}
.hero-logo img {
  max-width: 50px;
}
.hero-logo:hover {
  color: #111111;
  transform: rotate(12deg) scale(1.08);
}
.hero-nav {
  display: flex;
  align-items: center;
  gap: 2em;
  font-family: "Inter", sans-serif;
}
.hero-nav a {
  position: relative;
  color: #ffffff;
  font-size: 1em;
  text-decoration: none;
}
.hero-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4em;
  left: 0;
  height: 1px;
  background: #ffffff;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.hero-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1em;
}
.hero-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1em;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.hero-action:hover {
  transform: scale(1.2);
}
.hero-navigation {
  position: absolute;
  right: 2em;
  bottom: 2em;
  left: 2em;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.7em;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.hero-prev:hover {
  transform: translateX(-0.25em);
}
.hero-next:hover {
  transform: translateX(0.25em);
}
.hero-pagination {
  display: flex;
  align-items: center;
  gap: 1em;
  flex: 1;
  max-width: 34em;
  margin-right: 15%;
  margin-left: 15%;
  color: #ffffff;
}
.hero-pagination-current, .hero-pagination-total {
  min-width: 2em;
  font-size: 0.85em;
  font-weight: 600;
}
.hero-pagination-total {
  text-align: right;
}
.hero-pagination-line {
  position: relative;
  flex: 1;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}
.hero-pagination-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.333%;
  height: 100%;
  background: #ffffff;
  content: "";
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero[data-slide="1"] .hero-pagination-line::before {
  transform: translateX(0);
}
.hero[data-slide="2"] .hero-pagination-line::before {
  transform: translateX(100%);
}
.hero[data-slide="3"] .hero-pagination-line::before {
  transform: translateX(200%);
}
.hero {
  /* ==========================================
     RESPONSIVE
  ========================================== */
}
@media (max-width: 991.98px) {
  .hero .hero-content {
    width: min(34em, 60vw);
  }
  .hero .hero-title {
    font-size: clamp(4em, 9vw, 6em);
  }
  .hero .hero-pagination {
    margin-right: 8%;
    margin-left: 8%;
  }
}
@media (max-width: 767.98px) {
  .hero {
    min-height: 35em;
  }
  .hero .hero-header {
    padding: 1em 1.25em;
  }
  .hero .hero-actions {
    margin-left: auto;
  }
  .hero .hero-container {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
  .hero .hero-content {
    right: 1.25em;
    left: 1.25em;
    width: auto;
  }
  .hero .hero-label {
    margin-bottom: 1em;
    font-size: 0.8em;
  }
  .hero .hero-title {
    font-size: clamp(3.5em, 18vw, 5.5em);
  }
  .hero .hero-description {
    max-width: 23em;
    margin-top: 1.5em;
    font-size: 0.9em;
  }
  .hero .hero-navigation {
    right: 1em;
    bottom: 1.25em;
    left: 1em;
  }
  .hero .hero-pagination {
    margin-right: 1em;
    margin-left: 1em;
  }
  .hero .hero-arrow {
    font-size: 1.4em;
  }
}
@media (max-width: 575.98px) {
  .hero .hero-content {
    top: 53%;
  }
  .hero .hero-title {
    font-size: 18vw;
  }
  .hero .hero-description {
    max-width: 20em;
  }
  .hero .hero-slide-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  }
}

.hero-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide .hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-slide .hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide .hero-container {
  position: relative;
  z-index: 2;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-nav {
  position: relative;
  z-index: 1000;
}
.hero-nav .hero-nav-menu {
  display: flex;
  align-items: center;
  gap: 2em;
  text-transform: uppercase;
}
.hero-nav a {
  text-decoration: none;
}
.hero-nav .hero-nav-toggle {
  display: none;
}
.hero-nav .menu-dark a {
  color: #111111 !important;
}

@media (max-width: 767.98px) {
  .page-home .hero-nav {
    position: fixed;
    top: 0.5em;
    right: 1em;
    z-index: 9999;
  }
  .page-home .hero-nav .hero-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }
  .page-home .hero-nav .hero-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    transition: 0.3s ease;
    background: #fff;
  }
  .page-home .hero-nav .hero-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .page-home .hero-nav .hero-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .page-home .hero-nav .hero-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .page-home .hero-nav .hero-nav-menu {
    position: absolute;
    top: calc(100% + 1em);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
    padding: 1.5em;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }
  .page-home .hero-nav .hero-nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color: #111111;
  }
  .page-detail .hero-nav {
    position: fixed;
    top: 0.5em;
    right: 1em;
    z-index: 9999;
  }
  .page-detail .hero-nav .hero-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }
  .page-detail .hero-nav .hero-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    transition: 0.3s ease;
    background: #000;
  }
  .page-detail .hero-nav .hero-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .page-detail .hero-nav .hero-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .page-detail .hero-nav .hero-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .page-detail .hero-nav .hero-nav-menu {
    position: absolute;
    top: calc(100% + 1em);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
    padding: 1.5em;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }
  .page-detail .hero-nav .hero-nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color: #111111;
  }
}
.services-section {
  padding: 7em 0 5em;
  overflow: hidden;
  background: #fff;
}
.services-section .services-heading {
  text-align: center;
  margin-bottom: 5em;
}
.services-section .services-heading h2 {
  margin: 0;
  font-size: clamp(2em, 4vw, 4em);
  line-height: 1.1;
  font-weight: 700;
  color: #2b3550;
}
.services-section .services-heading h2 span {
  color: #bf0000;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.08em;
}
.services-section .services-marquee {
  width: 100%;
  overflow: hidden;
}
.services-section .services-track {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  width: -moz-max-content;
  width: max-content;
  animation: servicesMarquee 35s linear infinite;
  will-change: transform;
}
.services-section .services-image {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 1.25em;
}
.services-section .services-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .services-image-1 {
  width: 18em;
  height: 28em;
  margin-top: 4em;
}
.services-section .services-image-2 {
  width: 18em;
  height: 28em;
  margin-top: 12em;
}
.services-section .services-image-3 {
  width: 18em;
  height: 28em;
  margin-top: 7em;
}
.services-section .services-image-4 {
  width: 18em;
  height: 28em;
  margin-top: 0;
}
.services-section .services-image-5 {
  width: 18em;
  height: 28em;
  margin-top: 4em;
}
@keyframes servicesMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5em));
  }
}

.page-detail .hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25em 2em;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.page-detail .hero-header .hero-logo {
  position: relative;
  z-index: 2;
}
.page-detail .hero-header .hero-nav {
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.page-detail .hero-header .hero-nav .hero-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8em;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .page-detail .hero-header {
    padding: 1em 1.25em;
  }
  .page-detail .hero-header .hero-nav .hero-nav-toggle {
    display: flex;
  }
  .page-detail .hero-header .hero-nav .hero-nav-menu {
    position: absolute;
    top: calc(100% + 0.75em);
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
    min-width: 180px;
    padding: 1.5em;
    background: rgba(3, 3, 3, 0.8);
    border-radius: 1em;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }
  .page-detail .hero-header .hero-nav .hero-nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .page-detail .hero-header .hero-nav .menu-dark a {
    color: #ffffff !important;
  }
}
.about-story {
  position: relative;
  padding: 8em 0;
  overflow: hidden;
  background: #f3f0e9;
  color: #111111;
}

.about-story-heading {
  max-width: 68em;
  margin: 0 auto;
  text-align: center;
}

.about-story-heading h2 {
  margin: 0;
  font-size: clamp(3em, 5.5vw, 5em);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4em, 8vw, 9em);
  align-items: center;
  margin-top: clamp(5em, 9vw, 6em);
}

.about-story-media {
  position: relative;
  min-height: 42em;
}

.about-story-image {
  position: absolute;
  overflow: hidden;
}

.about-story-image::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  content: "";
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.about-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.about-story-image:hover img {
  transform: scale(1.06);
}

.about-story-image:hover::after {
  opacity: 0;
}

.about-story-image-main {
  top: 0;
  left: 0;
  width: 68%;
  height: 76%;
}

.about-story-image-small {
  right: 0;
  bottom: 0;
  width: 30%;
  height: 28%;
}

.about-story-image-floating {
  right: 12%;
  bottom: 20%;
  width: 25%;
  height: 25%;
  z-index: 2;
}

.about-story-copy {
  position: relative;
  padding-bottom: 2em;
}

.about-story-label {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
  color: #9c9c9c;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-label span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: #111111;
  font-size: 0.9em;
}

.about-story-text h3 {
  max-width: 15em;
  margin: 0 0 1.5em;
  font-size: clamp(1.8em, 2.8vw, 3em);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-story-text p {
  max-width: 35em;
  margin: 0 0 1.25em;
  color: #58627c;
  font-size: 1em;
  line-height: 1.7;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 1px solid #dcdcdc;
}

.about-story-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.about-story-meta-item span {
  color: #9c9c9c;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-story-meta-item strong {
  font-size: 1em;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-story-heading.reveal {
  transition-delay: 0.05s;
}

.about-story-image-main.reveal {
  transition-delay: 0.1s;
}

.about-story-image-floating.reveal {
  transition-delay: 0.2s;
}

.about-story-image-small.reveal {
  transition-delay: 0.3s;
}

.about-story-label.reveal {
  transition-delay: 0.15s;
}

.about-story-text.reveal {
  transition-delay: 0.25s;
}

.about-story-meta.reveal {
  transition-delay: 0.35s;
}

@media (max-width: 991.98px) {
  .about-story {
    padding: 6em 0;
  }
  .about-story-content {
    grid-template-columns: 1fr;
    gap: 5em;
  }
  .about-story-media {
    min-height: 45em;
  }
  .about-story-copy {
    max-width: 45em;
  }
}
@media (max-width: 767.98px) {
  .about-story {
    padding: 4em 0;
  }
  .about-story-heading {
    text-align: left;
  }
  .about-story-heading h2 {
    font-size: clamp(2.8em, 11vw, 5em);
  }
  .about-story-content {
    margin-top: 4em;
    gap: 4em;
  }
  .about-story-media {
    min-height: 30em;
  }
  .about-story-image-main {
    width: 72%;
    height: 76%;
  }
  .about-story-image-small {
    width: 32%;
    height: 30%;
  }
  .about-story-image-floating {
    right: 9%;
    bottom: 19%;
    width: 27%;
    height: 27%;
  }
  .about-story-text h3 {
    font-size: 2em;
  }
  .about-story-meta {
    gap: 1em;
  }
}
@media (max-width: 575.98px) {
  .about-story-heading h2 {
    font-size: 12vw;
  }
  .about-story-media {
    min-height: 24em;
  }
  .about-story-image-main {
    width: 76%;
    height: 78%;
  }
  .about-story-image-small {
    width: 34%;
    height: 29%;
  }
  .about-story-image-floating {
    right: 8%;
    bottom: 18%;
    width: 28%;
    height: 28%;
  }
  .about-story-text h3 {
    font-size: 1.7em;
  }
  .about-story-text p {
    font-size: 0.95em;
  }
  .about-story-meta {
    grid-template-columns: 1fr;
    gap: 1.25em;
  }
}
.vision-mission {
  position: relative;
  padding: 8em 0;
  overflow: hidden;
  background: #ffffff;
  color: #111111;
}

.vision-mission-intro {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 3em;
  margin-bottom: 4em;
}

.vision-mission-label {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  color: #9c9c9c;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-mission-label span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25em;
  height: 2.25em;
  flex: 0 0 2.25em;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: #111111;
  font-size: 0.9em;
}

.vision-mission-vision {
  max-width: 65em;
}

.vision-mission-eyebrow {
  display: block;
  margin-bottom: 1.5em;
  color: #9c9c9c;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vision-mission-vision h2 {
  max-width: 16em;
  margin: 0;
  font-size: clamp(2.5em, 4.5vw, 3em);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.vision-mission-list {
  margin-left: 25%;
  border-top: 1px solid #dcdcdc;
}

.vision-mission-item {
  border-bottom: 1px solid #dcdcdc;
}

.vision-mission-trigger {
  position: relative;
  display: grid;
  grid-template-columns: 5em 1fr 3em;
  align-items: center;
  width: 100%;
  padding: 1em 0;
  border: 0;
  background: transparent;
  color: #111111;
  text-align: left;
  cursor: pointer;
}

.vision-mission-number {
  color: #9c9c9c;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.35s ease;
}

.vision-mission-title {
  font-size: clamp(1.3em, 2vw, 2em);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease;
}

.vision-mission-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  margin-left: auto;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vision-mission-icon span {
  position: absolute;
  width: 0.8em;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s ease;
}

.vision-mission-icon span:last-child {
  transform: rotate(90deg);
}

.vision-mission-content {
  display: grid;
  grid-template-rows: 0fr;
  padding-left: 5em;
  overflow: hidden;
  transition: grid-template-rows 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vision-mission-content p {
  min-height: 0;
  max-width: 38em;
  margin: 0;
  color: #58627c;
  font-size: 1em;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-1em);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vision-mission-item.is-active .vision-mission-content {
  grid-template-rows: 1fr;
}

.vision-mission-item.is-active .vision-mission-content p {
  padding-bottom: 1.5em;
  opacity: 1;
  transform: translateY(0);
}

.vision-mission-item.is-active .vision-mission-number {
  color: #f26b21;
}

.vision-mission-item.is-active .vision-mission-title {
  transform: translateX(0.25em);
}

.vision-mission-item.is-active .vision-mission-icon {
  border-color: #f26b21;
  background: #f26b21;
  color: #ffffff;
  transform: rotate(1deg);
}

.vision-mission-item.is-active .vision-mission-icon span:last-child {
  transform: rotate(90deg) scaleX(0);
}

.vision-mission-item:hover .vision-mission-number {
  color: #f26b21;
}

.vision-mission-item:hover .vision-mission-title {
  transform: translateX(0.25em);
}

.reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vision-mission-label.reveal {
  transition-delay: 0.05s;
}

.vision-mission-vision.reveal {
  transition-delay: 0.15s;
}

.vision-mission-item:nth-child(1).reveal {
  transition-delay: 0.1s;
}

.vision-mission-item:nth-child(2).reveal {
  transition-delay: 0.18s;
}

.vision-mission-item:nth-child(3).reveal {
  transition-delay: 0.26s;
}

.vision-mission-item:nth-child(4).reveal {
  transition-delay: 0.34s;
}

@media (max-width: 991.98px) {
  .vision-mission {
    padding: 6em 0;
  }
  .vision-mission-intro {
    grid-template-columns: 1fr;
    gap: 3em;
    margin-bottom: 6em;
  }
  .vision-mission-label {
    margin-bottom: 0;
  }
  .vision-mission-list {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .vision-mission {
    padding: 4em 0;
  }
  .vision-mission-intro {
    margin-bottom: 4em;
  }
  .vision-mission-vision h2 {
    max-width: 100%;
    font-size: clamp(2.2em, 9vw, 4em);
  }
  .vision-mission-trigger {
    grid-template-columns: 3em 1fr 2.5em;
    gap: 1em;
    padding: 1.5em 0;
  }
  .vision-mission-title {
    font-size: 1.25em;
  }
  .vision-mission-content {
    padding-left: 3em;
  }
  .vision-mission-content p {
    font-size: 0.95em;
  }
  .vision-mission-item.is-active .vision-mission-content p {
    padding-bottom: 2em;
  }
}
@media (max-width: 575.98px) {
  .vision-mission-label {
    align-items: center;
    font-size: 0.7em;
  }
  .vision-mission-vision h2 {
    font-size: 10vw;
  }
  .vision-mission-trigger {
    grid-template-columns: 2.5em 1fr 2.25em;
    gap: 0.75em;
  }
  .vision-mission-title {
    font-size: 1.1em;
  }
  .vision-mission-icon {
    width: 2.25em;
    height: 2.25em;
  }
  .vision-mission-content {
    padding-left: 2.5em;
  }
}
.values-section {
  position: relative;
  padding: 8em 0;
  overflow: clip;
  background: #fff2ea;
  color: #111111;
  overflow-anchor: none;
}
.values-section .values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.values-section .values-bg img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.values-section .values-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(17, 17, 17, 0.18);
}
.values-section .container {
  position: relative;
  z-index: 2;
}
.values-section .values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5em;
}
.values-section .values-header .values-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid rgba(43, 53, 80, 0.2);
  border-radius: 50%;
  color: #2b3550;
  font-size: 0.8em;
  font-weight: 600;
}
.values-section .values-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.5em, 7vw, 7em);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.07em;
}
.values-section .values-wrapper {
  position: relative;
  max-width: 75em;
  margin-left: auto;
}
.values-section .values-list {
  border-top: 1px solid rgba(43, 53, 80, 0.2);
  overflow-anchor: none;
}
.values-section .values-list .values-item {
  border-bottom: 1px solid rgba(192, 195, 204, 0.2);
}
.values-section .values-list .values-item .values-trigger {
  display: grid;
  grid-template-columns: 4em 1fr 3em;
  align-items: center;
  width: 100%;
  gap: 1em;
  padding: 1.75em 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}
.values-section .values-list .values-item .values-trigger .values-number {
  color: #58627c;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.35s ease;
}
.values-section .values-list .values-item .values-trigger .values-title {
  font-size: clamp(1.5em, 2.5vw, 2.5em);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  transition: color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-section .values-list .values-item .values-trigger .values-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  margin-left: auto;
  border: 1px solid rgba(43, 53, 80, 0.25);
  border-radius: 50%;
  color: #2b3550;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-section .values-list .values-item .values-trigger .values-plus span {
  position: absolute;
  width: 0.8em;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s ease;
}
.values-section .values-list .values-item .values-trigger .values-plus span:last-child {
  transform: rotate(90deg);
}
.values-section .values-list .values-item .values-content {
  display: grid;
  grid-template-rows: 0fr;
  padding-left: 4em;
  overflow: hidden;
  transition: grid-template-rows 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-section .values-list .values-item .values-content p {
  min-height: 0;
  max-width: 36em;
  margin: 0;
  color: #ffffff;
  font-size: 1em;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-1em);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-section .values-list .values-item.is-active .values-content {
  grid-template-rows: 1fr;
}
.values-section .values-list .values-item.is-active .values-content p {
  padding-bottom: 2em;
  opacity: 1;
  transform: translateY(0);
}
.values-section .values-list .values-item.is-active .values-trigger .values-number {
  color: #f26b21;
}
.values-section .values-list .values-item.is-active .values-trigger .values-title {
  transform: translateX(0.25em);
}
.values-section .values-list .values-item.is-active .values-trigger .values-plus {
  border-color: #f26b21;
  background: #f26b21;
  color: #ffffff;
  transform: rotate(1deg);
}
.values-section .values-list .values-item.is-active .values-trigger .values-plus span:last-child {
  transform: rotate(90deg) scaleX(0);
}
.values-section .values-list .values-item:hover .values-trigger .values-number {
  color: #f26b21;
}
.values-section .values-list .values-item:hover .values-trigger .values-title {
  transform: translateX(0.25em);
}
.values-section .values-list .values-item:hover .values-trigger .values-plus {
  border-color: #f26b21;
}
.values-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.values-section .values-header.reveal {
  transition-delay: 0.05s;
}
.values-section .values-item:nth-child(1).reveal {
  transition-delay: 0.1s;
}
.values-section .values-item:nth-child(2).reveal {
  transition-delay: 0.17s;
}
.values-section .values-item:nth-child(3).reveal {
  transition-delay: 0.24s;
}
.values-section .values-item:nth-child(4).reveal {
  transition-delay: 0.31s;
}
.values-section .values-item:nth-child(5).reveal {
  transition-delay: 0.38s;
}
@media (max-width: 991.98px) {
  .values-section {
    padding: 6em 0;
  }
  .values-section .values-header {
    margin-bottom: 4em;
  }
  .values-section .values-wrapper {
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .values-section {
    padding: 4em 0;
  }
  .values-section .values-header {
    display: block;
    margin-bottom: 3em;
  }
  .values-section .values-header .values-eyebrow {
    margin-bottom: 2em;
  }
  .values-section .values-header h2 {
    font-size: 15vw;
  }
  .values-section .values-trigger {
    grid-template-columns: 3em 1fr 2.5em;
    padding: 1.5em 0;
  }
  .values-section .values-title {
    font-size: 1.4em;
  }
  .values-section .values-content {
    padding-left: 3em;
  }
}
@media (max-width: 575.98px) {
  .values-section .values-header h2 {
    font-size: 17vw;
  }
  .values-section .values-title {
    font-size: 1.2em;
  }
  .values-section .values-content {
    padding-left: 2.5em;
  }
  .values-section .values-content p {
    font-size: 0.9em;
  }
}

.site-footer {
  position: relative;
  padding: 8em 0 2em;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  isolation: isolate;
}
.site-footer .site-footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 28em;
  height: 28em;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 11, 11, 0.2) 0%, rgba(242, 107, 33, 0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.site-footer .container {
  position: relative;
  z-index: 2;
}
.site-footer .site-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18em, 24em);
  align-items: center;
  gap: 5em;
}
.site-footer .site-footer-wordmark {
  display: flex;
  flex-direction: column;
  margin-left: -0.06em;
  color: #ffffff;
  font-size: clamp(5em, 13vw, 7em);
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: -0.05em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.site-footer .site-footer-wordmark span {
  display: block;
  transition: color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-wordmark:hover span:first-child {
  color: #bf0000;
  transform: translateX(0.02em);
}
.site-footer .site-footer-wordmark:hover span:last-child {
  transform: translateX(0.08em);
}
.site-footer .site-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .site-footer-cta .site-footer-cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(15em, 20vw, 10em);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  isolation: isolate;
}
.site-footer .site-footer-cta .site-footer-cta-button .site-footer-cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 48% 52% 55% 45%;
  background: #bf0000;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.site-footer .site-footer-cta .site-footer-cta-button .site-footer-cta-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  max-width: 9em;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-cta .site-footer-cta-button .site-footer-cta-text .site-footer-cta-arrow {
  font-size: 1.2em;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-cta .site-footer-cta-button:hover {
  border-color: #bf0000;
}
.site-footer .site-footer-cta .site-footer-cta-button:hover .site-footer-cta-bg {
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
}
.site-footer .site-footer-cta .site-footer-cta-button:hover .site-footer-cta-text {
  color: #ffffff;
  transform: scale(1.05);
}
.site-footer .site-footer-cta .site-footer-cta-button:hover .site-footer-cta-text .site-footer-cta-arrow {
  transform: translate(0.2em, -0.2em);
}
.site-footer .site-footer-info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4em;
  margin-top: 2em;
}
.site-footer .site-footer-info .site-footer-intro {
  max-width: 28em;
}
.site-footer .site-footer-info .site-footer-intro .site-footer-eyebrow {
  display: inline-block;
  margin-bottom: 0.6em;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.site-footer .site-footer-info .site-footer-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1em;
  line-height: 1.7;
}
.site-footer .site-footer-info .site-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75em;
}
.site-footer .site-footer-info .site-footer-links .site-footer-link {
  display: flex;
  gap: 1em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-info .site-footer-links .site-footer-link span:last-child {
  color: #bf0000;
  opacity: 0;
  transform: translate(-0.5em, 0.5em);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-info .site-footer-links .site-footer-link:hover {
  color: #ffffff;
  transform: translateX(-0.5em);
}
.site-footer .site-footer-info .site-footer-links .site-footer-link:hover span:last-child {
  opacity: 1;
  transform: translate(0, 0);
}
.site-footer .site-footer-marquee {
  position: relative;
  width: 100vw;
  margin: 3em 0 3em;
  margin-left: calc((100vw - 100%) / -2);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer .site-footer-marquee .site-footer-marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 1.25em 0;
  animation: footerMarquee 20s linear infinite;
}
.site-footer .site-footer-marquee .site-footer-marquee-track span {
  display: flex;
  align-items: center;
  margin-right: 2em;
  color: #ffffff;
  font-size: clamp(1em, 1.5vw, 1.5em);
  font-weight: 500;
}
.site-footer .site-footer-marquee .site-footer-marquee-track span::after {
  content: "✦";
  margin-left: 2em;
  color: #f26b21;
  font-size: 0.7em;
}
.site-footer .site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .site-footer-bottom .site-footer-top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5em;
  height: 4.5em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-bottom .site-footer-top-button span {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .site-footer-bottom .site-footer-top-button:hover {
  border-color: #f26b21;
  background: #f26b21;
  transform: rotate(45deg);
}
.site-footer .site-footer-bottom .site-footer-top-button:hover span {
  transform: rotate(-45deg);
}
.site-footer .site-footer-bottom .site-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7em;
  text-align: right;
}
@keyframes footerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 991.98px) {
  .site-footer .site-footer-main {
    grid-template-columns: 1fr;
    gap: 4em;
  }
  .site-footer .site-footer-cta {
    justify-content: flex-start;
  }
  .site-footer .site-footer-info {
    margin-top: 3em;
  }
}
@media (max-width: 767.98px) {
  .site-footer {
    padding: 5em 0 2em;
  }
  .site-footer .site-footer-wordmark {
    font-size: 22vw;
  }
  .site-footer .site-footer-cta {
    justify-content: center;
  }
  .site-footer .site-footer-cta-button {
    width: 70vw;
  }
  .site-footer .site-footer-info {
    grid-template-columns: 1fr;
    gap: 3em;
  }
  .site-footer .site-footer-info .site-footer-links {
    align-items: flex-start;
  }
  .site-footer .site-footer-marquee {
    margin-top: 5em;
  }
}
@media (max-width: 575.98px) {
  .site-footer .site-footer-bottom .site-footer-top-button {
    width: 3.5em;
    height: 3.5em;
  }
}

.services-section {
  position: relative;
  padding: 8em 0 4em;
  overflow: hidden;
  background: #ffffff;
  color: #2b3550;
}
.services-section .services-header {
  max-width: 65em;
  margin-bottom: 7em;
}
.services-section .services-header .services-eyebrow {
  display: inline-block;
  margin-bottom: 1em;
  color: #f26b21;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.services-section .services-header h1 {
  max-width: 9em;
  margin: 0;
  color: #111111;
  font-size: clamp(4em, 8vw, 5em);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.07em;
}
.services-section .services-header h1 span {
  display: block;
  color: #f26b21;
}
.services-section .services-experience {
  display: grid;
  grid-template-columns: minmax(14em, 0.8fr) minmax(20em, 1fr) minmax(18em, 1fr);
  gap: 3em;
}
.services-section .services-navigation .services-navigation-inner {
  position: sticky;
  top: 8em;
}
.services-section .services-navigation .services-navigation-label {
  display: block;
  margin-bottom: 2em;
  color: #9c9c9c;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-section .services-navigation .services-menu {
  display: flex;
  flex-direction: column;
}
.services-section .services-navigation .services-menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.5em minmax(0, 1fr) 1.5em;
  align-items: start;
  gap: 0.75em;
  width: 100%;
  padding: 1em 0;
  border: 0;
  background: transparent;
  color: #9c9c9c;
  text-align: left;
  cursor: pointer;
  transition: color 0.35s ease;
}
.services-section .services-navigation .services-menu-item .services-menu-number {
  padding-top: 0;
  font-size: 0.9em;
  font-weight: 600;
}
.services-section .services-navigation .services-menu-item .services-menu-title {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.25;
  transition: color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-section .services-navigation .services-menu-item .services-menu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-0.5em, 0.5em);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-section .services-navigation .services-menu-item:hover, .services-section .services-navigation .services-menu-item.is-active {
  color: #111111;
}
.services-section .services-navigation .services-menu-item:hover .services-menu-title, .services-section .services-navigation .services-menu-item.is-active .services-menu-title {
  color: #f26b21;
  transform: translateX(0.2em);
}
.services-section .services-navigation .services-menu-item:hover .services-menu-arrow, .services-section .services-navigation .services-menu-item.is-active .services-menu-arrow {
  color: #f26b21;
  opacity: 1;
  transform: translate(0, 0);
}
.services-section .services-navigation .services-menu-item.is-active .services-menu-number {
  color: #f26b21;
}
.services-section .services-media .services-media-sticky {
  position: sticky;
  top: 8em;
  height: min(60vh, 48em);
  overflow: hidden;
  border-radius: 2em;
  background: #f5f5f2;
}
.services-section .services-media .services-media-item {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.65s ease, visibility 0.65s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-section .services-media .services-media-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-section .services-media .services-media-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.services-section .services-media .services-media-item.is-active img {
  transform: scale(1);
}
.services-section .services-media .services-media-item:hover img {
  transform: scale(1.05);
}
.services-section .services-media .services-media-number {
  position: absolute;
  right: 1.5em;
  bottom: 1.5em;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  height: 3.5em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(0.5em);
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 600;
}
.services-section .services-details {
  height: min(70vh, 48em);
  overflow: hidden;
}
.services-section .services-details .services-details-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.services-section .services-details .services-details-track::-webkit-scrollbar {
  display: none;
}
.services-section .services-details .services-detail {
  flex: 0 0 100%;
  min-height: 100%;
  padding: 1em 0 3em;
  transition: opacity 0.5s ease;
}
.services-section .services-details .services-detail .services-detail-number {
  display: block;
  margin-bottom: 2em;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.services-section .services-details .services-detail h2 {
  max-width: 8em;
  margin: 0;
  color: #111111;
  font-size: clamp(2.5em, 4vw, 4.2em);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.services-section .services-details .services-detail p {
  max-width: 24em;
  margin: 2.5em 0 0;
  color: #58627c;
  font-size: 1em;
  line-height: 1.7;
}
.services-section .services-details .services-detail.is-active {
  opacity: 1;
}
.services-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1199.98px) {
  .services-section .services-experience {
    grid-template-columns: minmax(13em, 0.7fr) minmax(18em, 1fr) minmax(16em, 1fr);
    gap: 2em;
  }
  .services-section .services-menu-item .services-menu-title {
    font-size: 0.85em;
  }
}
@media (max-width: 991.98px) {
  .services-section {
    padding: 4em 0;
  }
  .services-section .services-header {
    margin-bottom: 5em;
  }
  .services-section .services-header h1 {
    font-size: 13vw;
  }
  .services-section .services-experience {
    display: block;
    min-height: auto;
  }
  .services-section .services-navigation .services-navigation-inner {
    position: relative;
    top: auto;
  }
  .services-section .services-navigation .services-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }
  .services-section .services-navigation .services-menu-item {
    padding: 1em;
    border: 1px solid #dcdcdc;
  }
  .services-section .services-navigation .services-menu-item .services-menu-arrow {
    opacity: 1;
    transform: none;
  }
  .services-section .services-media {
    margin-top: 3em;
  }
  .services-section .services-media .services-media-sticky {
    position: relative;
    top: auto;
    height: 70vw;
    max-height: 40em;
  }
  .services-section .services-details {
    height: auto;
    margin-top: 3em;
    overflow: visible;
  }
  .services-section .services-details .services-details-track {
    height: auto;
    overflow: visible;
  }
  .services-section .services-details .services-detail {
    flex: none;
    min-height: auto;
    padding: 5em 0;
    border-bottom: 1px solid #dcdcdc;
    opacity: 1;
  }
  .services-section .services-details .services-detail:first-child {
    padding-top: 0;
  }
}
@media (max-width: 575.98px) {
  .services-section .services-header h1 {
    font-size: 16vw;
  }
  .services-section .services-navigation .services-menu {
    grid-template-columns: 1fr;
  }
  .services-section .services-navigation .services-menu-item {
    grid-template-columns: 2em minmax(0, 1fr) 1.5em;
  }
  .services-section .services-media .services-media-sticky {
    height: 110vw;
  }
  .services-section .services-details .services-detail h2 {
    font-size: 3em;
  }
}

.why-tomota-section {
  position: relative;
  padding: 8em 0;
  overflow: clip;
  background: #111111;
  color: #ffffff;
}
.why-tomota-section .why-tomota-header {
  max-width: 70em;
  margin-bottom: 8em;
}
.why-tomota-section .why-tomota-header .why-tomota-eyebrow {
  display: inline-block;
  margin-bottom: 2em;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.why-tomota-section .why-tomota-header h2 {
  max-width: 8em;
  margin: 0;
  font-size: clamp(4em, 8vw, 6em);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.07em;
}
.why-tomota-section .why-tomota-header h2 span {
  display: block;
  color: #f26b21;
}
.why-tomota-section .why-tomota-story {
  display: grid;
  grid-template-columns: 10em minmax(0, 1fr);
  min-height: 75vh;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.why-tomota-section .why-tomota-nav {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.why-tomota-section .why-tomota-nav .why-tomota-nav-inner {
  position: sticky;
  top: 8em;
  padding-top: 3em;
}
.why-tomota-section .why-tomota-nav .why-tomota-nav-label {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.why-tomota-section .why-tomota-nav .why-tomota-progress {
  position: relative;
  width: 1px;
  height: 8em;
  margin: 3em 0;
  background: rgba(255, 255, 255, 0.15);
}
.why-tomota-section .why-tomota-nav .why-tomota-progress .why-tomota-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 20%;
  background: #f26b21;
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-tomota-section .why-tomota-nav .why-tomota-nav-number {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7em;
}
.why-tomota-section .why-tomota-nav .why-tomota-nav-number .current {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 600;
}
.why-tomota-section .why-tomota-content {
  position: relative;
}
.why-tomota-section .why-tomota-story-item {
  display: grid;
  grid-template-columns: minmax(20em, 0.9fr) minmax(20em, 1fr);
  align-items: center;
  min-height: 75vh;
  gap: 6em;
  padding: 5em 0 5em 5em;
  opacity: 0.2;
  transition: opacity 0.7s ease;
}
.why-tomota-section .why-tomota-story-item.is-active {
  opacity: 1;
}
.why-tomota-section .why-tomota-visual {
  position: relative;
  width: min(100%, 28em);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at center, rgba(191, 0, 0, 0.22), transparent 60%);
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-word {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(2em, 4vw, 5em);
  font-weight: 600;
  letter-spacing: -0.07em;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-caption {
  margin-top: 1em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-line {
  width: 70%;
  height: 1px;
  margin-top: 1em;
  background: #f26b21;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-symbol {
  position: absolute;
  right: 10%;
  bottom: 5%;
  color: #f26b21;
  font-size: 7em;
  font-weight: 300;
  line-height: 1;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-pulse {
  width: 7em;
  height: 7em;
  border: 1px solid #f26b21;
  border-radius: 50%;
  animation: whyTomotaPulse 2.5s ease-in-out infinite;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-pulse::before, .why-tomota-section .why-tomota-visual .why-tomota-visual-pulse::after {
  content: "";
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(191, 0, 0, 0.4);
  border-radius: 50%;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 3em);
  gap: 0.6em;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-grid i {
  width: 3em;
  height: 3em;
  border: 1px solid rgba(191, 0, 0, 0.6);
  transition: background 0.5s ease, transform 0.5s ease;
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-grid i:nth-child(1) {
  background: rgba(191, 0, 0, 0.8);
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-grid i:nth-child(3) {
  transform: translateY(-0.5em);
}
.why-tomota-section .why-tomota-visual .why-tomota-visual-price {
  color: #f26b21;
  font-size: 4em;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.why-tomota-section .why-tomota-copy .why-tomota-number {
  display: block;
  margin-bottom: 1em;
  color: #f26b21;
  font-size: 0.75em;
  font-weight: 600;
}
.why-tomota-section .why-tomota-copy .why-tomota-kicker {
  display: block;
  margin-bottom: 1.5em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.why-tomota-section .why-tomota-copy h3 {
  max-width: 8em;
  margin: 0;
  font-size: clamp(2.5em, 4vw, 4.5em);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.why-tomota-section .why-tomota-copy .why-tomota-divider {
  width: 4em;
  height: 1px;
  margin: 3em 0 2em;
  background: #f26b21;
}
.why-tomota-section .why-tomota-copy .why-tomota-solution-label {
  display: block;
  margin-bottom: 0.8em;
  color: #f26b21;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.why-tomota-section .why-tomota-copy p {
  max-width: 25em;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1em;
  line-height: 1.7;
}
.why-tomota-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-tomota-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes whyTomotaPulse {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  .why-tomota-section {
    padding: 4em 0;
  }
  .why-tomota-section .why-tomota-header {
    margin-bottom: 5em;
  }
  .why-tomota-section .why-tomota-header h2 {
    font-size: 13vw;
  }
  .why-tomota-section .why-tomota-story {
    grid-template-columns: 5em minmax(0, 1fr);
  }
  .why-tomota-section .why-tomota-story-item {
    grid-template-columns: 1fr;
    gap: 5em;
    padding-left: 3em;
  }
  .why-tomota-section .why-tomota-visual {
    width: min(100%, 32em);
  }
}
@media (max-width: 575.98px) {
  .why-tomota-section .why-tomota-header h2 {
    font-size: 16vw;
  }
  .why-tomota-section .why-tomota-story {
    display: block;
    border-top: 0;
  }
  .why-tomota-section .why-tomota-nav {
    display: none;
  }
  .why-tomota-section .why-tomota-content {
    display: block;
  }
  .why-tomota-section .why-tomota-story-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 3em;
    padding: 5em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 1;
  }
  .why-tomota-section .why-tomota-story-item:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .why-tomota-section .why-tomota-visual {
    width: 100%;
  }
  .why-tomota-section .why-tomota-copy h3 {
    font-size: 2.8em;
  }
}

.advantages-section {
  position: relative;
  padding: 8em 0 10em;
  background: #fff2ea;
  color: #111111;
  overflow: clip;
}
.advantages-section .advantages-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18em, 0.5fr);
  align-items: end;
  gap: 6em;
  margin-bottom: 5em;
}
.advantages-section .advantages-title-wrap .advantages-label {
  display: flex;
  align-items: center;
  gap: 1.2em;
  margin-bottom: 1em;
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.advantages-section .advantages-title-wrap .advantages-label .advantages-number {
  color: #f26b21;
  font-size: 1.1em;
}
.advantages-section .advantages-title-wrap .advantages-label .advantages-line {
  width: 4em;
  height: 1px;
  background: #f26b21;
}
.advantages-section .advantages-title-wrap h2 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(4em, 8vw, 6em);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.advantages-section .advantages-title-wrap h2 span {
  color: #f26b21;
}
.advantages-section .advantages-intro {
  padding-bottom: 0.5em;
}
.advantages-section .advantages-intro p {
  max-width: 25em;
  margin: 0 0 2.5em;
  color: rgba(17, 17, 17, 0.6);
  font-size: 1em;
  line-height: 1.7;
}
.advantages-section .advantages-intro .advantages-link {
  display: inline-flex;
  align-items: center;
  gap: 1.5em;
  color: #f26b21;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.advantages-section .advantages-intro .advantages-link span:last-child {
  font-size: 1.4em;
  transition: transform 0.35s ease;
}
.advantages-section .advantages-intro .advantages-link:hover span:last-child {
  transform: translate(0.25em, -0.25em);
}
.advantages-section .advantages-visual {
  position: relative;
  width: calc(100% - 4em);
  height: min(48vw, 38em);
  margin: 0 auto;
  overflow: hidden;
  background: #ddd;
}
.advantages-section .advantages-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.advantages-section .advantages-visual:hover img {
  transform: scale(1.06);
}
.advantages-section .advantages-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.advantages-section .advantages-visual-meta {
  position: absolute;
  left: 2.5em;
  bottom: 2em;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8em;
  color: #ffffff;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.advantages-section .advantages-visual-meta .advantages-dot {
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background: #f26b21;
}
.advantages-section .advantages-visual-meta strong {
  margin-left: 1em;
  color: rgba(255, 255, 255, 0.65);
}
.advantages-section .advantages-nav {
  position: absolute;
  right: 2em;
  bottom: 2em;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100em;
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.advantages-section .advantages-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}
.advantages-section .advantages-nav button:hover {
  background: #ffffff;
  color: #111111;
}
.advantages-section .advantages-nav > span {
  width: 1px;
  height: 1.5em;
  background: rgba(255, 255, 255, 0.4);
}
.advantages-section .advantages-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -4em 2em 0;
}
.advantages-section .advantages-card {
  position: relative;
  min-height: 19em;
  padding: 2.5em 2.3em 2.3em;
  background: #ffffff;
  box-shadow: 0 1em 3em rgba(17, 17, 17, 0.08);
  cursor: pointer;
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.advantages-section .advantages-card:not(:first-child) {
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}
.advantages-section .advantages-card:hover, .advantages-section .advantages-card.is-active {
  z-index: 2;
  background: #f26b21;
  color: #ffffff;
  transform: translateY(-1em);
  box-shadow: 0 1.5em 4em rgba(17, 17, 17, 0.15);
}
.advantages-section .advantages-card:hover .advantages-card-number,
.advantages-section .advantages-card:hover .advantages-card-arrow, .advantages-section .advantages-card.is-active .advantages-card-number,
.advantages-section .advantages-card.is-active .advantages-card-arrow {
  color: #ffffff;
}
.advantages-section .advantages-card:hover .advantages-card-icon, .advantages-section .advantages-card.is-active .advantages-card-icon {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.advantages-section .advantages-card:hover .advantages-card-line, .advantages-section .advantages-card.is-active .advantages-card-line {
  background: #ffffff;
}
.advantages-section .advantages-card:hover p, .advantages-section .advantages-card.is-active p {
  color: rgba(255, 255, 255, 0.75);
}
.advantages-section .advantages-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3em;
}
.advantages-section .advantages-card-number {
  color: #f26b21;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: color 0.35s ease;
}
.advantages-section .advantages-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7em;
  height: 2.7em;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 50%;
  color: #f26b21;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.advantages-section .advantages-card-content h3 {
  margin: 0 0 1.2em;
  font-size: clamp(1.35em, 2vw, 2em);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.advantages-section .advantages-card-content .advantages-card-line {
  display: block;
  width: 2em;
  height: 2px;
  margin-bottom: 1.5em;
  background: #f26b21;
  transition: background 0.35s ease;
}
.advantages-section .advantages-card-content p {
  max-width: 18em;
  margin: 0;
  color: rgba(17, 17, 17, 0.55);
  font-size: 1em;
  line-height: 1.6;
  transition: color 0.35s ease;
}
.advantages-section .advantages-card-arrow {
  position: absolute;
  right: 2em;
  bottom: 1.8em;
  color: #f26b21;
  font-size: 1.2em;
  transition: color 0.35s ease;
}
.advantages-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.advantages-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .advantages-section {
    padding: 7em 0 9em;
  }
  .advantages-section .advantages-top {
    grid-template-columns: minmax(0, 1fr) 18em;
    gap: 3em;
  }
  .advantages-section .advantages-visual {
    width: calc(100% - 2em);
    height: 40em;
  }
  .advantages-section .advantages-cards {
    margin: -3em 1em 0;
  }
  .advantages-section .advantages-card {
    min-height: 18em;
    padding: 2em 1.5em;
  }
}
@media (max-width: 767.98px) {
  .advantages-section {
    padding: 4em 0 6em;
  }
  .advantages-section .advantages-top {
    display: block;
    margin-bottom: 3em;
  }
  .advantages-section .advantages-title-wrap .advantages-label {
    margin-bottom: 2em;
  }
  .advantages-section .advantages-title-wrap h2 {
    font-size: 15vw;
  }
  .advantages-section .advantages-intro {
    margin-top: 2.5em;
  }
  .advantages-section .advantages-visual {
    width: 100%;
    height: 26em;
  }
  .advantages-section .advantages-visual-meta {
    left: 1.5em;
    bottom: 1.5em;
  }
  .advantages-section .advantages-nav {
    right: 1.5em;
    bottom: 1.5em;
  }
  .advantages-section .advantages-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: -2em 1em 0;
  }
  .advantages-section .advantages-card {
    min-height: 17em;
    padding: 1.5em;
  }
  .advantages-section .advantages-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }
  .advantages-section .advantages-card:nth-child(4) {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }
  .advantages-section .advantages-card-top {
    margin-bottom: 2em;
  }
}
@media (max-width: 575.98px) {
  .advantages-section .advantages-title-wrap h2 {
    font-size: 17vw;
  }
  .advantages-section .advantages-visual {
    height: 21em;
  }
  .advantages-section .advantages-visual-meta {
    flex-wrap: wrap;
    gap: 0.5em;
    max-width: 12em;
  }
  .advantages-section .advantages-visual-meta strong {
    width: 100%;
    margin-left: 0;
  }
  .advantages-section .advantages-cards {
    grid-template-columns: 1fr;
    margin: -1.5em 0.75em 0;
  }
  .advantages-section .advantages-card {
    min-height: 15em;
  }
  .advantages-section .advantages-card:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }
}

.portfolio-hero {
  position: relative;
  min-height: 50svh;
  display: flex;
  align-items: center;
  padding: 2em 0 8em;
  background: #111111;
  color: #ffffff;
  overflow: hidden;
  top: 5em;
}
.portfolio-hero .container {
  position: relative;
  z-index: 2;
}
.portfolio-hero .portfolio-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.portfolio-hero .portfolio-hero-bg span {
  position: absolute;
  left: 50%;
  color: rgba(255, 255, 255, 0.025);
  font-size: 25vw;
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.09em;
  white-space: nowrap;
  transform: translateX(-50%);
  will-change: transform;
}
.portfolio-hero .portfolio-hero-bg span:nth-child(1) {
  top: 14%;
}
.portfolio-hero .portfolio-hero-bg span:nth-child(2) {
  top: 42%;
}
.portfolio-hero .portfolio-hero-bg span:nth-child(3) {
  bottom: 4%;
}
.portfolio-hero .portfolio-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3em;
}
.portfolio-hero .portfolio-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8em;
  font-weight: 600;
}
.portfolio-hero .portfolio-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-hero .portfolio-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18em;
  align-items: end;
  gap: 6em;
}
.portfolio-hero .portfolio-hero-title {
  margin: 0;
  font-size: clamp(5em, 11vw, 8em);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.08em;
}
.portfolio-hero .portfolio-hero-title span {
  display: block;
  will-change: transform;
}
.portfolio-hero .portfolio-hero-title span:nth-child(2) {
  margin-left: 1.1em;
}
.portfolio-hero .portfolio-hero-title span:nth-child(3) {
  margin-left: 0.35em;
  color: #f26b21;
}
.portfolio-hero .portfolio-hero-side {
  padding-bottom: 0.5em;
}
.portfolio-hero .portfolio-hero-side p {
  margin: 0 0 4em;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95em;
  line-height: 1.7;
}
.portfolio-hero .portfolio-hero-scroll {
  display: flex;
  align-items: center;
  gap: 1em;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-hero .portfolio-hero-scroll i {
  width: 4em;
  height: 1px;
  background: #f26b21;
}
.portfolio-hero .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-hero .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-projects {
  padding: 1em 0 3em;
  background: #fff2ea;
  color: #111111;
  margin-top: 3em;
}

.portfolio-project {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22em, 0.75fr);
  align-items: center;
  gap: 7em;
  max-width: 100em;
  margin: 0 auto;
  padding: 5em 2em;
}
.portfolio-project + .portfolio-project {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.portfolio-project-reverse {
  grid-template-columns: minmax(22em, 0.75fr) minmax(0, 1.25fr);
}
.portfolio-project-reverse .portfolio-project-media {
  order: 2;
}
.portfolio-project-reverse .portfolio-project-info {
  order: 1;
}

.portfolio-project-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}
.portfolio-project-media .portfolio-media-stage {
  position: absolute;
  inset: 0;
}
.portfolio-project-media .portfolio-media-item {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.08) translateX(5%);
  clip-path: inset(0 0 0 8%);
  transition: opacity 0.55s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-project-media .portfolio-media-item.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1) translateX(0);
  clip-path: inset(0);
}
.portfolio-project-media .portfolio-media-item img,
.portfolio-project-media .portfolio-media-item video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 45%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.portfolio-media-top {
  position: absolute;
  top: 1.75em;
  right: 1.75em;
  left: 1.75em;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-media-top span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.portfolio-media-top span:last-child {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: rgba(255, 255, 255, 0.7);
}
.portfolio-media-top .media-status-dot {
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #f26b21;
}

.portfolio-media-bottom {
  position: absolute;
  right: 1.75em;
  bottom: 1.75em;
  left: 1.75em;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-media-type {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.portfolio-media-controls {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100em;
  backdrop-filter: blur(8px);
}
.portfolio-media-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}
.portfolio-media-controls button:hover {
  background: #ffffff;
  color: #111111;
}
.portfolio-media-controls .portfolio-media-counter {
  padding: 0 1em;
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.portfolio-project-info {
  padding: 2em 0;
}

.portfolio-project-number {
  margin-bottom: 1.5em;
  color: #f26b21;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.portfolio-project-category {
  display: block;
  margin-bottom: 1.5em;
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-project-info h2 {
  max-width: 8em;
  margin: 0 0 0.8em;
  font-size: clamp(3.5em, 6vw, 6em);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.portfolio-project-info > p {
  max-width: 28em;
  margin: 0 0 3em;
  color: rgba(17, 17, 17, 0.58);
  font-size: 1em;
  line-height: 1.7;
}

.portfolio-project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 28em;
  margin-bottom: 3em;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}
.portfolio-project-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1.2em 0;
}
.portfolio-project-meta div + div {
  border-left: 1px solid rgba(17, 17, 17, 0.15);
  padding-left: 1.5em;
}
.portfolio-project-meta span {
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-project-meta strong {
  font-size: 0.85em;
  font-weight: 600;
}

.portfolio-project-link {
  display: inline-flex;
  align-items: center;
  gap: 1.5em;
  color: #f26b21;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.portfolio-project-link span:last-child {
  font-size: 1.4em;
  transition: transform 0.35s ease;
}
.portfolio-project-link:hover span:last-child {
  transform: translate(0.25em, -0.25em);
}

.portfolio-project.reveal {
  opacity: 0;
  transform: translateY(5em);
  transition: opacity 0.9s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-project.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .portfolio-hero .portfolio-hero-content {
    grid-template-columns: minmax(0, 1fr) 15em;
    gap: 3em;
  }
  .portfolio-project {
    gap: 4em;
    padding: 6em 1.5em;
  }
  .portfolio-project-reverse {
    grid-template-columns: minmax(18em, 0.75fr) minmax(0, 1.25fr);
  }
  .portfolio-project-info h2 {
    font-size: clamp(3em, 6vw, 5em);
  }
}
@media (max-width: 767.98px) {
  .portfolio-hero {
    min-height: 100svh;
    padding: 6em 0;
  }
  .portfolio-hero .portfolio-hero-top {
    margin-bottom: 5em;
  }
  .portfolio-hero .portfolio-hero-content {
    display: block;
  }
  .portfolio-hero .portfolio-hero-title {
    font-size: 16vw;
  }
  .portfolio-hero .portfolio-hero-title span:nth-child(2) {
    margin-left: 0.6em;
  }
  .portfolio-hero .portfolio-hero-title span:nth-child(3) {
    margin-left: 0.2em;
  }
  .portfolio-hero .portfolio-hero-side {
    margin-top: 4em;
  }
  .portfolio-projects {
    padding: 1em 0 7em;
  }
  .portfolio-project,
  .portfolio-project-reverse {
    display: flex;
    flex-direction: column;
    gap: 3em;
    padding: 2em 1em;
  }
  .portfolio-project .portfolio-project-media,
  .portfolio-project .portfolio-project-info,
  .portfolio-project-reverse .portfolio-project-media,
  .portfolio-project-reverse .portfolio-project-info {
    order: initial;
    width: 100%;
  }
  .portfolio-project-media {
    aspect-ratio: 4/3;
  }
  .portfolio-project-info {
    padding: 0;
  }
  .portfolio-project-info h2 {
    font-size: 14vw;
  }
  .portfolio-project-meta {
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  .portfolio-hero .portfolio-hero-title {
    font-size: 18vw;
  }
  .portfolio-media-top,
  .portfolio-media-bottom {
    right: 1em;
    left: 1em;
  }
  .portfolio-media-top {
    top: 1em;
  }
  .portfolio-media-bottom {
    bottom: 1em;
  }
  .portfolio-project-info h2 {
    font-size: 16vw;
  }
}
.clients-section {
  position: relative;
  padding: 5em 0;
  background: #E9E7E1;
  color: #111111;
  overflow: hidden;
}
.clients-section .clients-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18em, 0.75fr);
  align-items: end;
  gap: 6em;
  margin-bottom: 6em;
}
.clients-section .clients-label {
  display: flex;
  align-items: center;
  gap: 1.2em;
  margin-bottom: 3em;
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.clients-section .clients-label span:first-child {
  color: #f26b21;
}
.clients-section .clients-label i {
  width: 4em;
  height: 1px;
  background: #f26b21;
}
.clients-section .clients-heading h2 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(4em, 8vw, 4em);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.clients-section .clients-heading h2 span {
  color: #f26b21;
}
.clients-section .clients-intro p {
  max-width: 26em;
  margin: 0 0 3em;
  color: rgba(17, 17, 17, 0.55);
  font-size: 1em;
  line-height: 1.7;
}
.clients-section .clients-drag-hint {
  display: flex;
  align-items: center;
  gap: 1em;
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.clients-section .clients-drag-hint i {
  width: 4em;
  height: 1px;
  background: #f26b21;
}
.clients-section .clients-drag-hint span:last-child {
  color: #f26b21;
  font-size: 1.4em;
}
.clients-section .clients-reel {
  position: relative;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.clients-section .clients-reel:active {
  cursor: grabbing;
}
.clients-section .clients-track {
  display: flex;
  align-items: stretch;
  gap: 1em;
  width: -moz-max-content;
  width: max-content;
  padding: 1em 0;
  will-change: transform;
}
.clients-section .client-card {
  position: relative;
  width: clamp(15em, 23vw, 19em);
  aspect-ratio: 0.82;
  flex: 0 0 auto;
  padding: 0.5em;
  background: transparent;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients-section .client-card:hover {
  transform: translateY(-1em);
}
.clients-section .client-card.is-active {
  transform: translateY(-1.5em);
}
.clients-section .client-card.is-active .client-card-inner {
  background: #f26b21;
  color: #ffffff;
  box-shadow: 0 2em 5em rgba(17, 17, 17, 0.16);
}
.clients-section .client-card.is-active .client-card-top,
.clients-section .client-card.is-active .client-card-bottom {
  color: rgba(255, 255, 255, 0.7);
}
.clients-section .client-card.is-active .client-logo {
  color: #ffffff;
  transform: scale(1.05);
}
.clients-section .client-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  background: #ffffff;
  box-shadow: 0 1em 3em rgba(17, 17, 17, 0.06);
  transition: background 0.7s cubic-bezier(0.22, 1, 0.36, 1), color 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients-section .client-card-top,
.clients-section .client-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 17, 17, 0.35);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.5s ease;
}
.clients-section .client-logo {
  color: #111111;
  font-size: clamp(1.7em, 3vw, 3em);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-align: center;
  transition: color 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients-section .clients-cursor {
  position: fixed;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  background: #f26b21;
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients-section .clients-cursor strong {
  font-size: 1.5em;
}
.clients-section .clients-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2em;
  margin-top: 4em;
}
.clients-section .clients-counter {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  min-width: 5em;
}
.clients-section .clients-counter strong {
  color: #f26b21;
  font-size: 1.4em;
  font-weight: 600;
}
.clients-section .clients-counter span {
  color: rgba(17, 17, 17, 0.3);
  font-size: 0.75em;
  font-weight: 600;
}
.clients-section .clients-progress {
  position: relative;
  height: 1px;
  background: rgba(17, 17, 17, 0.15);
}
.clients-section .clients-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 37.5%;
  background: #f26b21;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients-section .clients-arrows {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 100em;
}
.clients-section .clients-arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  height: 3.5em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}
.clients-section .clients-arrows button + button {
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}
.clients-section .clients-arrows button:hover {
  background: #f26b21;
  color: #ffffff;
}
.clients-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.clients-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .clients-section .clients-header {
    grid-template-columns: minmax(0, 1fr) 16em;
    gap: 3em;
  }
  .clients-section .client-card {
    width: 19em;
  }
}
@media (max-width: 767.98px) {
  .clients-section {
    padding: 4em 0;
  }
  .clients-section .clients-header {
    display: block;
    margin-bottom: 4em;
  }
  .clients-section .clients-label {
    margin-bottom: 2em;
  }
  .clients-section .clients-heading h2 {
    font-size: 15vw;
  }
  .clients-section .clients-intro {
    margin-top: 2.5em;
  }
  .clients-section .clients-reel {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }
  .clients-section .clients-track {
    gap: 0.75em;
  }
  .clients-section .client-card {
    width: 75vw;
    max-width: 20em;
  }
  .clients-section .clients-cursor {
    display: none;
  }
  .clients-section .clients-controls {
    grid-template-columns: auto 1fr;
    gap: 1.5em;
  }
  .clients-section .clients-arrows {
    grid-column: 1/-1;
    justify-self: end;
  }
}
@media (max-width: 575.98px) {
  .clients-section .clients-heading h2 {
    font-size: 17vw;
  }
  .clients-section .client-card {
    width: 78vw;
  }
  .clients-section .client-card-inner {
    padding: 1.5em;
  }
}

.process-section {
  position: relative;
  background: #111111;
  color: #ffffff;
  overflow: hidden;
}
.process-section .process-intro {
  position: relative;
  padding: 5em 0;
  background: #fff2ea;
  color: #111111;
}
.process-section .process-intro-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2em;
}
.process-section .process-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  color: #f26b21;
  font-size: 0.8em;
  font-weight: 600;
}
.process-section .process-label {
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.process-section .process-intro-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18em, 0.8fr);
  align-items: end;
  gap: 6em;
}
.process-section .process-intro h2 {
  max-width: 7em;
  margin: 0;
  font-size: clamp(5em, 10vw, 4em);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.08em;
}
.process-section .process-intro h2 span {
  color: #f26b21;
}
.process-section .process-intro-content p {
  max-width: 26em;
  margin: 0 0 0.5em;
  color: rgba(17, 17, 17, 0.55);
  font-size: 1em;
  line-height: 1.7;
}
.process-section .process-journey {
  position: relative;
  height: 72vh;
  min-height: 38em;
  overflow: hidden;
}
.process-section .process-visual {
  position: absolute;
  inset: 0;
}
.process-section .process-visual-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-section .process-visual-item.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.process-section .process-visual-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.process-section .process-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.2) 100%);
}
.process-section .process-progress {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}
.process-section .process-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #f26b21;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-section .process-container {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
}
.process-section .process-stage {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  gap: 4em;
}
.process-section .process-stage-number {
  align-self: start;
  padding-top: 0.5em;
}
.process-section .process-stage-number span {
  display: block;
  color: #ffffff;
  font-size: clamp(3em, 5vw, 5em);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.06em;
}
.process-section .process-stage-number small {
  display: block;
  margin-top: 0.8em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7em;
  font-weight: 600;
}
.process-section .process-content {
  position: relative;
  min-height: 20em;
}
.process-section .process-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2em);
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s ease;
}
.process-section .process-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.process-section .process-item-label {
  display: block;
  margin-bottom: 1.5em;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.process-section .process-item h3 {
  max-width: 7em;
  margin: 0 0 0.35em;
  font-size: clamp(5em, 10vw, 10em);
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.08em;
}
.process-section .process-item p {
  max-width: 27em;
  margin: 2em 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1em;
  line-height: 1.7;
}
.process-section .process-nav {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100em;
}
.process-section .process-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4em;
  height: 4em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}
.process-section .process-nav button + button {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.process-section .process-nav button:hover {
  background: #f26b21;
  color: #ffffff;
}
.process-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .process-section .process-intro-content {
    grid-template-columns: minmax(0, 1fr) 18em;
    gap: 3em;
  }
  .process-section .process-stage {
    grid-template-columns: 5em minmax(0, 1fr) auto;
    gap: 2em;
  }
  .process-section .process-item h3 {
    font-size: clamp(4em, 9vw, 8em);
  }
}
@media (max-width: 767.98px) {
  .process-section .process-intro {
    padding: 4em 0;
  }
  .process-section .process-intro-content {
    display: block;
  }
  .process-section .process-intro h2 {
    font-size: 17vw;
  }
  .process-section .process-intro-content p {
    margin-top: 3em;
  }
  .process-section .process-journey,
  .process-section .process-container {
    min-height: 80svh;
  }
  .process-section .process-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.78));
  }
  .process-section .process-stage {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 2em;
    padding: 6em 0;
  }
  .process-section .process-stage-number {
    padding: 0;
  }
  .process-section .process-content {
    width: 100%;
    min-height: 17em;
  }
  .process-section .process-item h3 {
    font-size: 17vw;
  }
  .process-section .process-nav {
    position: absolute;
    right: 0;
    bottom: 6em;
    flex-direction: row;
  }
  .process-section .process-nav button {
    width: 3.5em;
    height: 3.5em;
  }
  .process-section .process-nav button + button {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.team-section {
  position: relative;
  padding: 4em 0 6em;
  background: #E9E7E1;
  color: #111111;
  overflow: hidden;
}
.team-section .team-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2em;
}
.team-section .team-header-left {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.team-section .team-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  color: #f26b21;
  font-size: 0.8em;
  font-weight: 600;
}
.team-section .team-label {
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-section .team-header-right {
  max-width: 20em;
}
.team-section .team-header-right p {
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.9em;
  line-height: 1.6;
}
.team-section .team-stage {
  position: relative;
}
.team-section .team-intro {
  display: block;
  grid-template-columns: 5em minmax(0, 1fr);
  align-items: end;
  gap: 3em;
  margin-bottom: 3em;
}
.team-section .team-intro-number {
  align-self: start;
  padding-top: 0.5em;
  color: #f26b21;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.team-section .team-intro h2 {
  max-width: 7em;
  margin: 0;
  font-size: clamp(4em, 8vw, 4em);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.075em;
  margin-bottom: 30px;
}
.team-section .team-intro h2 span {
  color: #f26b21;
}
.team-section .team-intro p {
  grid-column: 2;
  max-width: 25em;
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  font-size: 1em;
  line-height: 1.7;
}
.team-section .team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22em, 0.85fr);
  gap: 6em;
  align-items: stretch;
}
.team-section .team-image {
  position: relative;
  aspect-ratio: 1/1.08;
  overflow: hidden;
  background: #d5d3ce;
}
.team-section .team-image-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08) translateX(4%);
  clip-path: inset(0 0 0 7%);
  transition: opacity 0.55s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-section .team-image-item.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  clip-path: inset(0);
  z-index: 1;
}
.team-section .team-image-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-section .team-image-meta {
  position: absolute;
  right: 1.75em;
  bottom: 1.75em;
  left: 1.75em;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-section .team-image-meta span:last-child {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.team-section .team-image-meta i {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #f26b21;
}
.team-section .team-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2em 0;
}
.team-section .team-detail-track {
  position: relative;
  min-height: 28em;
}
.team-section .team-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2em);
  transition: opacity 0.45s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s ease;
}
.team-section .team-detail.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.team-section .team-detail-number {
  margin-bottom: 1.5em;
  color: #f26b21;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.team-section .team-detail-role {
  margin-bottom: 2em;
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-section .team-detail h3 {
  max-width: 7em;
  margin: 0;
  font-size: clamp(3.5em, 6vw, 6em);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.team-section .team-detail p {
  max-width: 25em;
  margin: 2.5em 0 0;
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.95em;
  line-height: 1.7;
}
.team-section .team-navigation {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2em;
  margin-top: 3em;
}
.team-section .team-counter {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  min-width: 4em;
}
.team-section .team-counter .team-current {
  color: #f26b21;
  font-size: 1.3em;
  font-weight: 600;
}
.team-section .team-counter span:last-child {
  color: rgba(17, 17, 17, 0.3);
  font-size: 0.7em;
  font-weight: 600;
}
.team-section .team-progress {
  position: relative;
  height: 1px;
  background: rgba(17, 17, 17, 0.15);
}
.team-section .team-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #f26b21;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-section .team-arrows {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 100em;
}
.team-section .team-arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  height: 3.5em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}
.team-section .team-arrows button + button {
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}
.team-section .team-arrows button:hover {
  background: #f26b21;
  color: #ffffff;
}
.team-section .team-list {
  margin-top: 6em;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  display: none;
}
.team-section .team-list-item {
  display: grid;
  grid-template-columns: 3em 1fr auto;
  align-items: center;
  width: 100%;
  gap: 1em;
  padding: 1.3em 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  background: transparent;
  color: rgba(17, 17, 17, 0.35);
  text-align: left;
  cursor: pointer;
  transition: color 0.35s ease, padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-section .team-list-item > span:first-child {
  font-size: 0.7em;
  font-weight: 600;
}
.team-section .team-list-item > span:nth-child(2) {
  font-size: clamp(1.3em, 2vw, 2em);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.team-section .team-list-item > span:last-child {
  font-size: 1.2em;
  opacity: 0;
  transform: translate(-0.5em, 0.5em);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.team-section .team-list-item:hover, .team-section .team-list-item.is-active {
  padding-left: 1em;
  color: #111111;
}
.team-section .team-list-item:hover > span:first-child, .team-section .team-list-item.is-active > span:first-child {
  color: #f26b21;
}
.team-section .team-list-item:hover > span:last-child, .team-section .team-list-item.is-active > span:last-child {
  opacity: 1;
  transform: translate(0, 0);
}
.team-section .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .team-section .team-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(20em, 0.8fr);
    gap: 3em;
  }
  .team-section .team-intro {
    gap: 2em;
  }
  .team-section .team-detail h3 {
    font-size: clamp(3em, 6vw, 5em);
  }
}
@media (max-width: 767.98px) {
  .team-section {
    padding: 4em 0;
  }
  .team-section .team-header {
    margin-bottom: 4em;
  }
  .team-section .team-intro {
    display: block;
    margin-bottom: 4em;
  }
  .team-section .team-intro-number {
    display: block;
    margin-bottom: 2em;
  }
  .team-section .team-intro h2 {
    font-size: 15vw;
  }
  .team-section .team-intro p {
    margin-top: 2.5em;
  }
  .team-section .team-showcase {
    display: flex;
    flex-direction: column;
    gap: 3em;
  }
  .team-section .team-image {
    aspect-ratio: 1/1.05;
  }
  .team-section .team-details {
    padding: 0;
  }
  .team-section .team-detail-track {
    min-height: 22em;
  }
  .team-section .team-detail h3 {
    font-size: 14vw;
  }
  .team-section .team-list {
    margin-top: 4em;
  }
}
@media (max-width: 575.98px) {
  .team-section .team-header {
    display: block;
  }
  .team-section .team-header-right {
    margin-top: 2em;
  }
  .team-section .team-intro h2 {
    font-size: 17vw;
  }
  .team-section .team-list-item {
    grid-template-columns: 2.5em 1fr;
  }
  .team-section .team-list-item > span:nth-child(2) {
    font-size: 1.1em;
  }
  .team-section .team-list-item > span:last-child {
    display: none;
  }
}

.contact-page {
  background: #fff2ea;
  color: #111111;
  overflow: hidden;
}
.contact-page .contact-hero {
  position: relative;
  min-height: 50svh;
  display: flex;
  align-items: center;
  padding: 2em 0 2em;
  background: #fff2ea;
}
.contact-page .contact-hero-top {
  position: absolute;
  top: 2em;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-page .contact-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  color: #f26b21;
  font-size: 0.8em;
  font-weight: 600;
}
.contact-page .contact-label {
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-page .contact-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18em, 0.7fr);
  align-items: end;
  gap: 6em;
  width: 100%;
}
.contact-page .contact-hero h1 {
  max-width: 8em;
  margin: 0;
  font-size: clamp(5em, 10vw, 4em);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.085em;
}
.contact-page .contact-hero h1 span {
  display: block;
  color: #f26b21;
}
.contact-page .contact-hero-side {
  padding-bottom: 0.5em;
}
.contact-page .contact-hero-side p {
  max-width: 24em;
  margin: 0 0 3em;
  color: rgba(17, 17, 17, 0.55);
  font-size: 1em;
  line-height: 1.7;
}
.contact-page .contact-scroll {
  display: inline-flex;
  align-items: center;
  gap: 1.2em;
  color: #111111;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-page .contact-scroll i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 50%;
  color: #f26b21;
  font-style: normal;
  transition: background 0.35s ease, color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .contact-scroll:hover i {
  background: #f26b21;
  color: #ffffff;
  transform: translateY(0.3em);
}
.contact-page .contact-details-section {
  padding: 4em 0;
  background: #E9E7E1;
}
.contact-page .contact-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(4em, 8vw, 9em);
  align-items: center;
}
.contact-page .contact-info-heading > span {
  display: block;
  margin-bottom: 2.5em;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-page .contact-info-heading h2 {
  max-width: 6em;
  margin: 0;
  font-size: clamp(3.5em, 6vw, 4em);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.contact-page .contact-info-heading em {
  color: #f26b21;
  font-style: normal;
}
.contact-page .contact-links {
  margin-top: 5em;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.contact-page .contact-link {
  position: relative;
  display: grid;
  grid-template-columns: 7em 1fr auto;
  align-items: center;
  gap: 1.5em;
  padding: 1.5em 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  color: #111111;
  text-decoration: none;
  transition: padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .contact-link::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f26b21;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .contact-link > span {
  position: relative;
  z-index: 1;
}
.contact-page .contact-link:hover {
  padding-right: 1em;
  padding-left: 1em;
  color: #ffffff;
}
.contact-page .contact-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.contact-page .contact-link:hover .contact-link-meta {
  color: rgba(255, 255, 255, 0.7);
}
.contact-page .contact-link:hover .contact-link-arrow {
  transform: translate(0.2em, -0.2em);
}
.contact-page .contact-link-meta {
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.contact-page .contact-link-main {
  font-size: clamp(1em, 1.5vw, 1.5em);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.contact-page .contact-link-arrow {
  font-size: 1.2em;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .contact-map {
  position: relative;
}
.contact-page .contact-map-frame {
  position: relative;
  aspect-ratio: 1/0.85;
  overflow: hidden;
  background: #d5d3ce;
}
.contact-page .contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
  opacity: 0.85;
}
.contact-page .contact-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 45%, rgba(0, 0, 0, 0.45));
}
.contact-page .contact-map-location {
  position: absolute;
  right: 1.5em;
  bottom: 1.5em;
  left: 1.5em;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 1em;
  color: #ffffff;
}
.contact-page .contact-map-dot {
  flex: 0 0 auto;
  width: 0.75em;
  height: 0.75em;
  margin-top: 0.35em;
  border-radius: 50%;
  background: #f26b21;
  box-shadow: 0 0 0 0.4em rgba(191, 0, 0, 0.25);
}
.contact-page .contact-map-location strong {
  display: block;
  margin-bottom: 0.4em;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.contact-page .contact-map-location small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7em;
  line-height: 1.5;
}
.contact-page .contact-map-open {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0.8em 1em;
  background: rgba(17, 17, 17, 0.8);
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 0.35s ease;
}
.contact-page .contact-map-open:hover {
  background: #f26b21;
}
.contact-page .contact-closing {
  position: relative;
  padding: 8em 0;
  background: #111111;
  color: #ffffff;
}
.contact-page .contact-closing-inner {
  position: relative;
  text-align: center;
}
.contact-page .contact-closing-inner > span {
  display: block;
  margin-bottom: 3em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-page .contact-closing-inner h2 {
  max-width: 8em;
  margin: 0 auto;
  font-size: clamp(4em, 9vw, 9em);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.contact-page .contact-closing-inner h2 span {
  color: #f26b21;
}
.contact-page .contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  margin-top: 5em;
  padding: 1.1em 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100em;
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .contact-cta i {
  font-style: normal;
  font-size: 1.3em;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .contact-cta:hover {
  border-color: #f26b21;
  background: #f26b21;
  transform: translateY(-0.25em);
}
.contact-page .contact-cta:hover i {
  transform: translate(0.2em, -0.2em);
}
.contact-page .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .contact-page .contact-hero-content {
    grid-template-columns: minmax(0, 1fr) 18em;
    gap: 3em;
  }
  .contact-page .contact-details-grid {
    gap: 4em;
  }
  .contact-page .contact-link {
    grid-template-columns: 6em 1fr auto;
  }
}
@media (max-width: 767.98px) {
  .contact-page .contact-hero {
    min-height: 80svh;
    padding: 7em 0 5em;
  }
  .contact-page .contact-hero-top {
    top: 1.5em;
  }
  .contact-page .contact-hero-content {
    display: block;
  }
  .contact-page .contact-hero h1 {
    font-size: 17vw;
  }
  .contact-page .contact-hero-side {
    margin-top: 3em;
  }
  .contact-page .contact-details-section {
    padding: 4em 0;
  }
  .contact-page .contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 5em;
  }
  .contact-page .contact-info-heading h2 {
    font-size: 14vw;
  }
  .contact-page .contact-links {
    margin-top: 4em;
  }
  .contact-page .contact-link {
    grid-template-columns: 5em 1fr auto;
    gap: 1em;
    padding: 1.25em 0;
  }
  .contact-page .contact-link-main {
    font-size: 1em;
  }
  .contact-page .contact-map-frame {
    aspect-ratio: 1/1;
  }
  .contact-page .contact-closing {
    padding: 4em 0;
  }
  .contact-page .contact-closing-inner h2 {
    font-size: 16vw;
  }
  .contact-page .contact-cta {
    margin-top: 4em;
  }
}
@media (max-width: 575.98px) {
  .contact-page .contact-hero h1 {
    font-size: 18vw;
  }
  .contact-page .contact-link {
    grid-template-columns: 1fr auto;
  }
  .contact-page .contact-link .contact-link-meta {
    grid-column: 1/-1;
  }
  .contact-page .contact-link .contact-link-main {
    grid-column: 1;
  }
  .contact-page .contact-link .contact-link-arrow {
    grid-column: 2;
    grid-row: 2;
  }
  .contact-page .contact-map-location {
    right: 1em;
    bottom: 1em;
    left: 1em;
  }
  .contact-page .contact-map-open {
    top: 1em;
    right: 1em;
  }
}

.blog-page {
  background: #fff2ea;
  color: #111111;
  overflow: hidden;
}
.blog-page .blog-hero {
  position: relative;
  min-height: 42svh;
  display: flex;
  align-items: center;
  padding: 2em 0 2em;
}
.blog-page .blog-hero-top {
  position: absolute;
  top: 2em;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-page .blog-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  color: #f26b21;
  font-size: 0.8em;
  font-weight: 600;
}
.blog-page .blog-label {
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-page .blog-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18em, 0.75fr);
  align-items: end;
  gap: 6em;
  width: 100%;
}
.blog-page .blog-hero h1 {
  max-width: 8em;
  margin: 0;
  font-size: clamp(5em, 10vw, 4em);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.085em;
}
.blog-page .blog-hero h1 span {
  color: #f26b21;
}
.blog-page .blog-hero-side {
  padding-bottom: 0.5em;
}
.blog-page .blog-hero-side p {
  max-width: 25em;
  margin: 0 0 3em;
  color: rgba(17, 17, 17, 0.55);
  font-size: 1em;
  line-height: 1.7;
}
.blog-page .blog-scroll {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  color: #111111;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.blog-page .blog-scroll i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  color: #f26b21;
  font-style: normal;
  transition: background 0.35s ease, color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-scroll:hover i {
  background: #f26b21;
  color: #ffffff;
  transform: translateY(0.3em);
}
.blog-page .blog-featured {
  padding: 4em 0;
  background: #E9E7E1;
}
.blog-page .blog-section-heading {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 3em;
}
.blog-page .blog-section-heading span {
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-page .blog-section-heading i {
  width: 5em;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
}
.blog-page .blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20em, 0.8fr);
  color: #111111;
  text-decoration: none;
}
.blog-page .blog-featured-image {
  position: relative;
  min-height: 42em;
  overflow: hidden;
  background: #d5d3ce;
}
.blog-page .blog-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45));
}
.blog-page .blog-view {
  position: absolute;
  right: 2em;
  bottom: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7em;
  height: 7em;
  border-radius: 50%;
  background: #f26b21;
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transform: scale(0.8);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-featured-card:hover .blog-featured-image img {
  transform: scale(1.06);
}
.blog-page .blog-featured-card:hover .blog-view {
  opacity: 1;
  transform: scale(1);
}
.blog-page .blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3em, 6vw, 7em);
  background: #ffffff;
}
.blog-page .blog-meta {
  display: flex;
  align-items: center;
  gap: 1em;
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-page .blog-meta span + span::before {
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  margin-right: 1em;
  border-radius: 50%;
  background: #f26b21;
  content: "";
  vertical-align: middle;
}
.blog-page .blog-featured-content h2 {
  max-width: 8em;
  margin: 1.5em 0 0.7em;
  font-size: clamp(3em, 5vw, 5em);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.07em;
}
.blog-page .blog-featured-content p {
  max-width: 27em;
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.95em;
  line-height: 1.7;
}
.blog-page .blog-read {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  margin-top: 3em;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-page .blog-read i {
  font-style: normal;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-featured-card:hover .blog-read i {
  transform: translate(0.3em, -0.3em);
}
.blog-page .blog-list-section {
  padding: 4em 0;
}
.blog-page .blog-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3em;
  margin-bottom: 5em;
}
.blog-page .blog-list-number {
  display: block;
  margin-bottom: 1.5em;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.blog-page .blog-list-heading h2 {
  margin: 0;
  font-size: clamp(4em, 7vw, 4em);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.075em;
}
.blog-page .blog-list-heading h2 span {
  color: #f26b21;
}
.blog-page .blog-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.blog-page .blog-filters button {
  padding: 0.8em 1.2em;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 100em;
  background: transparent;
  color: rgba(17, 17, 17, 0.45);
  font: inherit;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.blog-page .blog-filters button:hover, .blog-page .blog-filters button.is-active {
  border-color: #f26b21;
  background: #f26b21;
  color: #ffffff;
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 3em;
       column-gap: 3em;
  row-gap: 3em;
}
.blog-page .blog-card {
  color: #111111;
  text-decoration: none;
}
.blog-page .blog-card:nth-child(even) {
  transform: translateY(5em);
}
.blog-page .blog-card.is-hidden {
  display: none;
}
.blog-page .blog-card-image {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
  background: #d5d3ce;
}
.blog-page .blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-card-image > span {
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7em;
  height: 2.7em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.blog-page .blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}
.blog-page .blog-card:hover .blog-card-footer i {
  transform: translate(0.3em, -0.3em);
  display: none;
}
.blog-page .blog-card-content {
  padding-top: 1.5em;
}
.blog-page .blog-card-content h3 {
  max-width: 14em;
  margin: 0.3em 0 0.5em;
  font-size: clamp(1.7em, 2.5vw, 2.5em);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.blog-page .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f26b21;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-page .blog-card-footer i {
  font-style: normal;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-cta {
  padding: 8em 0;
  background: #111111;
  color: #ffffff;
}
.blog-page .blog-cta-inner {
  text-align: center;
}
.blog-page .blog-cta-inner > span {
  display: block;
  margin-bottom: 3em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-page .blog-cta-inner h2 {
  max-width: 8em;
  margin: 0 auto;
  font-size: clamp(4em, 9vw, 9em);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.blog-page .blog-cta-inner h2 span {
  color: #f26b21;
}
.blog-page .blog-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  margin-top: 5em;
  padding: 1.1em 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100em;
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-cta-button i {
  font-style: normal;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .blog-cta-button:hover {
  border-color: #f26b21;
  background: #f26b21;
  transform: translateY(-0.25em);
}
.blog-page .blog-cta-button:hover i {
  transform: translate(0.2em, -0.2em);
}
.blog-page .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .blog-page .blog-hero {
    min-height: 75svh;
  }
  .blog-page .blog-hero-content {
    display: block;
  }
  .blog-page .blog-hero h1 {
    font-size: 17vw;
  }
  .blog-page .blog-hero-side {
    margin-top: 3em;
  }
  .blog-page .blog-featured {
    padding: 4em 0;
  }
  .blog-page .blog-featured-card {
    display: block;
  }
  .blog-page .blog-featured-image {
    min-height: auto;
    aspect-ratio: 1/1.05;
  }
  .blog-page .blog-featured-content {
    padding: 3em 2em;
  }
  .blog-page .blog-list-section {
    padding: 4em 0;
  }
  .blog-page .blog-list-heading {
    display: block;
    margin-bottom: 3em;
  }
  .blog-page .blog-list-heading h2 {
    font-size: 17vw;
  }
  .blog-page .blog-filters {
    margin-top: 2.5em;
  }
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
    row-gap: 4em;
  }
  .blog-page .blog-card:nth-child(even) {
    transform: none;
  }
  .blog-page .blog-cta {
    padding: 4em 0;
  }
  .blog-page .blog-cta-inner h2 {
    font-size: 17vw;
  }
}

.article-page {
  position: relative;
  overflow: hidden;
  background: #fff2ea;
  color: #111111;
}
.article-page .article-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 2px;
  background: rgba(17, 17, 17, 0.08);
}
.article-page .article-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #f26b21;
}
.article-page .article-hero {
  padding: 8em 0 7em;
}
.article-page .article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8em;
}
.article-page .article-back {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  color: #111111;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-page .article-back span {
  color: #f26b21;
  font-size: 1.5em;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-page .article-back:hover span {
  transform: translateX(-0.3em);
}
.article-page .article-top-meta {
  display: flex;
  align-items: center;
  gap: 1.5em;
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-page .article-top-meta span + span::before {
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-right: 1.5em;
  border-radius: 50%;
  background: #f26b21;
  content: "";
  vertical-align: middle;
}
.article-page .article-heading {
  display: grid;
  grid-template-columns: 5em minmax(0, 1fr) minmax(17em, 0.4fr);
  align-items: end;
  gap: 3em;
}
.article-page .article-number {
  align-self: start;
  color: #f26b21;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.article-page .article-heading h1 {
  max-width: 8em;
  margin: 0;
  font-size: clamp(5em, 10vw, 4em);
  font-weight: 500;
  line-height: 0.77;
  letter-spacing: -0.085em;
}
.article-page .article-intro {
  padding-bottom: 0.4em;
}
.article-page .article-intro p {
  max-width: 25em;
  margin: 0 0 2.5em;
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.95em;
  line-height: 1.7;
}
.article-page .article-intro span {
  color: #f26b21;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-page .article-cover-section {
  padding-bottom: 8em;
}
.article-page .article-cover {
  position: relative;
  height: min(72vh, 52em);
  margin: 0;
  overflow: hidden;
  background: #d5d3ce;
}
.article-page .article-cover img {
  display: block;
  width: 100%;
  height: 108%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-4%);
  will-change: transform;
}
.article-page .article-cover-caption {
  position: absolute;
  right: 2em;
  bottom: 2em;
  left: 2em;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-page .article-body-section {
  padding: 8em 0;
  background: #E9E7E1;
}
.article-page .article-layout {
  display: grid;
  grid-template-columns: 12em minmax(0, 45em);
  gap: 5em;
  max-width: 72em;
  margin: 0 auto;
}
.article-page .article-sidebar-inner {
  position: sticky;
  top: 8em;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.article-page .article-sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.article-page .article-sidebar-item span {
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-page .article-sidebar-item strong {
  color: #111111;
  font-size: 0.75em;
  font-weight: 600;
}
.article-page .article-share {
  margin-top: 1em;
}
.article-page .article-share button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8em;
  height: 2.8em;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-page .article-share button:hover {
  background: #f26b21;
  color: #ffffff;
  transform: translate(0.2em, -0.2em);
}
.article-page .article-content {
  max-width: 45em;
}
.article-page .article-content > p {
  margin: 0 0 2em;
  color: rgba(17, 17, 17, 0.65);
  font-size: 1.05em;
  line-height: 1.9;
}
.article-page .article-content .article-lead {
  margin-bottom: 1em;
  color: #111111;
  font-size: clamp(1.5em, 2.5vw, 2.3em);
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.article-page .article-content h2 {
  max-width: 8em;
  margin: 1em 0 1em;
  font-size: clamp(3em, 5vw, 5em);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.07em;
}
.article-page .article-inline-media {
  margin: 1em 0;
}
.article-page .article-inline-media img {
  display: block;
  width: 100%;
  height: auto;
}
.article-page .article-inline-media figcaption {
  margin-top: 1em;
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.65em;
  line-height: 1.5;
}
.article-page .article-content blockquote {
  margin: 1em 0;
  padding: 1.3em 0 1.3em 1.5em;
  border-left: 2px solid #f26b21;
  color: #111111;
  font-size: clamp(1.8em, 3vw, 3em);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.article-page .article-wide-media {
  width: calc(100% + 10em);
  margin: 6em 0 6em -5em;
}
.article-page .article-wide-media img {
  display: block;
  width: 100%;
  height: auto;
}
.article-page .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 5em;
  padding-top: 2em;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.article-page .article-tags span {
  padding: 0.7em 1em;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 100em;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-page .article-next {
  padding: 8em 0;
}
.article-page .article-next-heading {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 4em;
}
.article-page .article-next-heading span {
  color: #f26b21;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-page .article-next-heading i {
  width: 5em;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
}
.article-page .article-next-link {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 6em;
  color: #111111;
  text-decoration: none;
}
.article-page .article-next-image {
  position: relative;
  aspect-ratio: 1.2;
  overflow: hidden;
  background: #d5d3ce;
}
.article-page .article-next-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-page .article-next-image > span {
  position: absolute;
  right: 1.5em;
  bottom: 1.5em;
  padding: 0.8em 1em;
  background: #f26b21;
  color: #ffffff;
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-page .article-next-link:hover .article-next-image img {
  transform: scale(1.06);
}
.article-page .article-next-link:hover .article-next-content strong {
  color: #f26b21;
}
.article-page .article-next-meta {
  display: flex;
  gap: 1em;
  color: rgba(17, 17, 17, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-page .article-next-content h2 {
  max-width: 8em;
  margin: 1em 0 1.5em;
  font-size: clamp(3em, 6vw, 6em);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.article-page .article-next-content strong {
  color: #111111;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.article-page .article-next-content strong i {
  margin-left: 0.5em;
  font-style: normal;
}
.article-page .article-cta {
  padding: 8em 0;
  background: #111111;
  color: #ffffff;
}
.article-page .article-cta-inner {
  text-align: center;
}
.article-page .article-cta-inner > span {
  display: block;
  margin-bottom: 3em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-page .article-cta-inner h2 {
  max-width: 8em;
  margin: 0 auto;
  font-size: clamp(4em, 9vw, 9em);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.article-page .article-cta-inner h2 em {
  color: #f26b21;
  font-style: normal;
}
.article-page .article-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  margin-top: 5em;
  padding: 1.1em 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100em;
  color: #ffffff;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-page .article-cta-button i {
  font-style: normal;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-page .article-cta-button:hover {
  border-color: #f26b21;
  background: #f26b21;
  transform: translateY(-0.25em);
}
.article-page .article-cta-button:hover i {
  transform: translate(0.2em, -0.2em);
}
.article-page .reveal {
  opacity: 0;
  transform: translateY(3em);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .article-page .article-heading {
    grid-template-columns: 4em minmax(0, 1fr) 15em;
    gap: 2em;
  }
  .article-page .article-layout {
    grid-template-columns: 8em minmax(0, 1fr);
    gap: 3em;
  }
  .article-page .article-wide-media {
    width: 100%;
    margin-left: 0;
  }
  .article-page .article-next-link {
    gap: 3em;
  }
}
@media (max-width: 767.98px) {
  .article-page .article-hero {
    padding: 7em 0 5em;
  }
  .article-page .article-top {
    margin-bottom: 5em;
  }
  .article-page .article-heading {
    display: block;
  }
  .article-page .article-number {
    margin-bottom: 2.5em;
  }
  .article-page .article-heading h1 {
    font-size: 16vw;
  }
  .article-page .article-intro {
    margin-top: 3em;
  }
  .article-page .article-cover-section {
    padding-bottom: 4em;
  }
  .article-page .article-cover {
    height: 65vw;
    min-height: 20em;
  }
  .article-page .article-body-section {
    padding: 4em 0;
  }
  .article-page .article-layout {
    display: block;
  }
  .article-page .article-sidebar {
    margin-bottom: 4em;
  }
  .article-page .article-sidebar-inner {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 1.5em;
  }
  .article-page .article-share {
    margin-top: 0;
  }
  .article-page .article-content .article-lead {
    font-size: 1.5em;
  }
  .article-page .article-content blockquote {
    margin: 4em 0;
  }
  .article-page .article-next {
    padding: 4em 0;
  }
  .article-page .article-next-link {
    display: block;
  }
  .article-page .article-next-image {
    margin-bottom: 3em;
  }
  .article-page .article-next-content h2 {
    font-size: 14vw;
  }
  .article-page .article-cta {
    padding: 4em 0;
  }
  .article-page .article-cta-inner h2 {
    font-size: 17vw;
  }
}
@media (max-width: 575.98px) {
  .article-page .article-top-meta {
    display: none;
  }
  .article-page .article-heading h1 {
    font-size: 17vw;
  }
  .article-page .article-cover-caption {
    right: 1em;
    bottom: 1em;
    left: 1em;
  }
  .article-page .article-sidebar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .article-page .article-share {
    grid-column: 1/-1;
  }
}/*# sourceMappingURL=main.css.map */