*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dl,
dd {
  margin: 0;
}

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

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

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

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

body {
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
  color: #2d2d2c;
  font-weight: 400;
}

h1,
.h1 {
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(36px, 36px + 20 * (100vw - 480px) / 1440, 56px);
  line-height: 1.2;
  font-weight: 700;
  color: #030303;
}

h2,
.h2 {
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
  font-weight: 700;
  color: #030303;
}

h3 {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.2;
  font-weight: 600;
}

.text-medium {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
}

a {
  transition: color 0.2s ease;
}

:focus-visible {
  outline: 2px solid #ff7606;
  outline-offset: 2px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  left: -9999px;
  top: 0;
  z-index: 100000;
  position: absolute;
  background: #003a70;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0 0 6px 0;
}

.skip-link:focus-visible,
.skip-link:focus {
  left: 0;
  clip: auto !important;
  clip-path: none;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: fixed;
}

html {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: block;
}

main:focus {
  outline: none;
}

.site-main {
  flex: 1 0 auto;
}

hr {
  border: none;
  border-top: 1px solid #f9fafb;
  margin: 30px 0;
}

::selection {
  background: #ff7606;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: #ff7606;
  color: #ffffff;
  box-shadow: 0px 20px 12.5px rgba(255, 118, 6, 0.2), 0px 8px 5px rgba(255, 118, 6, 0.2);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: rgb(90.3529411765%, 40.6406803685%, 0%);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: #ffffff;
  color: #003a70;
}

.site-header__cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 4px;
  flex-shrink: 0;
  color: #ffffff;
  background: transparent;
  transition: background-color 0.2s ease;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle:focus-visible {
  outline: 2px solid #ff7606;
  outline-offset: 2px;
}

.menu-toggle__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.menu-toggle__bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: currentColor;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, top 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle__bar:nth-child(1) {
  top: 0;
}

.menu-toggle__bar:nth-child(2) {
  top: 6px;
}

.menu-toggle__bar:nth-child(3) {
  top: 12px;
}

.nav-open .menu-toggle,
body.nav-open .menu-toggle {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-open .menu-toggle .menu-toggle__bar:nth-child(1),
body.nav-open .menu-toggle .menu-toggle__bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle .menu-toggle__bar:nth-child(2),
body.nav-open .menu-toggle .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-open .menu-toggle .menu-toggle__bar:nth-child(3),
body.nav-open .menu-toggle .menu-toggle__bar:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-nav-footer {
  display: none;
}

.mobile-nav-footer__cta {
  width: auto !important;
  inline-size: auto !important;
  max-width: min(100%, 280px);
  max-inline-size: min(100%, 280px);
  min-width: 0;
  min-inline-size: 0;
  min-height: 42px;
  padding: 9px 18px;
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
  justify-content: center;
  flex: 0 1 auto;
}

@keyframes cls-nav-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes cls-nav-link-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cls-nav-footer-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html.nav-open,
html.nav-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .hero,
body.nav-open .hero__shell,
body.nav-open .hero__container,
body.nav-open .hero__media {
  transform: none !important;
  filter: none !important;
  perspective: none !important;
  animation: none !important;
  will-change: auto !important;
  overflow: visible !important;
}

body.nav-open .hero__copy,
body.nav-open .hero__image-wrap {
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle__bar,
  .nav-open .menu-toggle .menu-toggle__bar,
  body.nav-open .menu-toggle .menu-toggle__bar {
    transition: none;
  }
  .nav-open .site-header__inner {
    animation: none !important;
  }
  .nav-open .primary-menu > li,
  body.nav-open .mobile-nav-footer,
  .nav-open .mobile-nav-footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.search-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.search-form__input {
  flex: 1 1 auto;
  padding: 12px 18px;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
  background-color: #ffffff;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
}

.search-form__input:focus-visible {
  outline: 2px solid #ff7606;
  outline-offset: 2px;
}

.search-form__submit {
  padding: 12px 24px;
  border-radius: 30px;
  background-color: #003a70;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  transition: background-color 0.2s ease;
}

.search-form__submit:hover,
.search-form__submit:focus-visible {
  background-color: #ff7606;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.comment-form p {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-form label {
  font-weight: 600;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  padding: 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background-color: #fcfcfc;
  width: 100%;
}

.comment-form input:focus-visible,
.comment-form textarea:focus-visible {
  outline: 2px solid #ff7606;
  outline-offset: 2px;
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-form .form-submit input {
  padding: 12px 24px;
  border-radius: 30px;
  background-color: #ff7606;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0px 20px 12.5px rgba(255, 118, 6, 0.2), 0px 8px 5px rgba(255, 118, 6, 0.2);
}

.comments-area {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #f9fafb;
}

.comments-area__title {
  margin-bottom: 24px;
}

.comment-list .comment-body {
  padding: 30px 0;
  border-bottom: 1px solid #f9fafb;
}

.comment-list .comment-author {
  font-weight: 600;
}

.comment-list .comment-metadata {
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  color: rgba(3, 3, 3, 0.65);
  margin-bottom: 12px;
}

.page-links {
  margin-top: 30px;
  font-weight: 600;
}

.contact-form-card .cls-gravity-form {
  margin: 0;
}

.contact-form-card .gform_heading {
  display: none;
}

.contact-form-card .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form-card .gfield {
  margin: 0;
  padding: 0;
}

.contact-form-card .gfield.cls-gclid-field {
  display: none;
}

.contact-form-card .gfield--width-full,
.contact-form-card .cls-field-full,
.contact-form-card .gfield--type-textarea {
  grid-column: 1/-1;
}

.contact-form-card .gfield_label {
  display: block;
  margin: 0 0 8px;
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  line-height: 1.43;
  font-weight: 500;
  color: #030303;
}

.contact-form-card .gfield_required {
  color: #ff7606;
}

.contact-form-card .ginput_container input[type=text],
.contact-form-card .ginput_container input[type=email],
.contact-form-card .ginput_container input[type=tel],
.contact-form-card .ginput_container input[type=url],
.contact-form-card .ginput_container input[type=number],
.contact-form-card .ginput_container textarea,
.contact-form-card .ginput_container select {
  width: 100%;
  padding: 12px 17px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background-color: rgba(249, 250, 251, 0.5);
  color: #030303;
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form-card .ginput_container textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form-card .ginput_container input::placeholder,
.contact-form-card .ginput_container textarea::placeholder {
  color: rgba(3, 3, 3, 0.5);
  opacity: 1;
}

.contact-form-card .ginput_container input:focus-visible,
.contact-form-card .ginput_container textarea:focus-visible,
.contact-form-card .ginput_container select:focus-visible {
  outline: none;
  border-color: rgba(0, 58, 112, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 58, 112, 0.08);
  background-color: #ffffff;
}

.contact-form-card .gform-footer,
.contact-form-card .gform_page_footer {
  margin: 24px 0 0;
  padding: 0;
}

.contact-form-card .gfield_description,
.contact-form-card .validation_message {
  margin-top: 6px;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  line-height: 1.4;
}

.contact-form-card .gfield_error .ginput_container input,
.contact-form-card .gfield_error .ginput_container textarea {
  border-color: #d63638;
}

.contact-form-card .gform_confirmation_message {
  margin: 0;
  padding: 24px;
  border-radius: 14px;
  background-color: rgba(0, 58, 112, 0.06);
  color: #003a70;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .contact-form-card .gform_fields {
    grid-template-columns: 1fr;
  }
  .contact-form-card .gfield--width-full,
  .contact-form-card .cls-field-full,
  .contact-form-card .gfield--type-textarea,
  .contact-form-card .gfield--width-half,
  .contact-form-card .cls-field-half {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-form-card .ginput_container input,
  .contact-form-card .ginput_container textarea,
  .contact-form-card .ginput_container select {
    transition: none;
  }
}
.cls-card, .post-card {
  background-color: #fcfcfc;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 30px;
}

.post-card-grid,
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.post-card:hover,
.post-card:focus-within {
  box-shadow: 0 20px 40px rgba(3, 3, 3, 0.08);
  transform: translateY(-2px);
}

.post-card__thumbnail {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.post-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
}

.post-card__title {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.2;
  font-weight: 600;
}

.post-card__title a {
  color: #030303;
}

.post-card__title a:hover,
.post-card__title a:focus-visible {
  color: #ff7606;
}

.post-card__meta,
.entry__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  color: rgba(3, 3, 3, 0.65);
}

.cat-links a {
  color: #ff7606;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(11px, 11px + 1 * (100vw - 480px) / 1440, 12px);
  letter-spacing: 0.05em;
}

.related-posts {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #f9fafb;
}

.related-posts__heading {
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .post-card-grid,
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .post-card-grid,
  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}
@keyframes cls-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cls-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cls-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.cls-reveal--delay-1 {
  transition-delay: 0.08s;
}

.cls-reveal--delay-2 {
  transition-delay: 0.16s;
}

.cls-reveal--delay-3 {
  transition-delay: 0.24s;
}

.cls-reveal--delay-4 {
  transition-delay: 0.32s;
}

.hero__copy,
.hero__media,
.contact-hero__copy {
  animation: cls-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__media {
  animation-delay: 0.12s;
}

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn--primary:hover::after,
.btn--primary:focus-visible::after {
  transform: translateX(120%);
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(0, 58, 112, 0.18);
  box-shadow: 0 18px 36px rgba(3, 3, 3, 0.08);
  background-color: #ffffff;
}

.service-card__icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__icon,
.service-card:focus-within .service-card__icon {
  transform: scale(1.08) rotate(-2deg);
}

.cryo-service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cryo-service-card:hover,
.cryo-service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(0, 58, 112, 0.18);
  box-shadow: 0 18px 36px rgba(3, 3, 3, 0.08);
}

.cryo-service-card__icon {
  transition: transform 0.3s ease;
}

.cryo-service-card:hover .cryo-service-card__icon,
.cryo-service-card:focus-within .cryo-service-card__icon {
  transform: scale(1.08);
}

.mve-category-card,
.mve-feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mve-category-card:hover,
.mve-category-card:focus-within,
.mve-feature-card:hover,
.mve-feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(3, 3, 3, 0.08);
}

.mve-feature-card:hover,
.mve-feature-card:focus-within {
  border-color: rgba(0, 58, 112, 0.18);
}

.area-card {
  transition: transform 0.3s ease;
}

.area-card:hover,
.area-card:focus-within {
  transform: translateY(-4px);
}

.area-card__map {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.area-card:hover .area-card__map,
.area-card:focus-within .area-card__map {
  transform: scale(1.04);
}

.stats__number {
  transition: transform 0.3s ease;
}

.stats__item.is-visible .stats__number {
  animation: cls-fade-in 0.4s ease both;
}

.primary-menu a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

@keyframes cls-headline-word-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 110%, 0) rotate(-2deg);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
    filter: blur(0);
  }
}
@keyframes cls-headline-bullet-in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.35) rotate(8deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes cls-headline-bullet-pulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 0 transparent;
  }
  50% {
    transform: scale(1.18);
    text-shadow: 0 0 18px rgba(255, 118, 6, 0.75);
  }
}
@keyframes cls-headline-shimmer {
  0% {
    background-position: 120% 50%;
  }
  100% {
    background-position: -20% 50%;
  }
}
.hero__headline[data-headline-animate] .hero__word,
.hero__headline[data-headline-animate] .hero__bullet {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.hero__headline[data-headline-animate] .hero__word {
  transform: translate3d(0, 110%, 0);
}

.hero__headline.is-headline-ready .hero__word {
  background-image: linear-gradient(105deg, #ffffff 0%, #ffffff 38%, rgba(255, 255, 255, 0.55) 50%, #ffffff 62%, #ffffff 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: cls-headline-word-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both, cls-headline-shimmer 2.8s ease-in-out 1 both;
  animation-delay: calc(0.28s + var(--word-i, 0) * 0.09s), calc(1.05s + var(--word-i, 0) * 0.08s);
}

.hero__headline.is-headline-ready .hero__bullet {
  animation: cls-headline-bullet-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both, cls-headline-bullet-pulse 2.4s ease-in-out infinite;
  animation-delay: calc(0.42s + var(--word-i, 0) * 0.09s), calc(1.2s + var(--word-i, 0) * 0.09s);
}

.hero__headline.is-headline-ready:hover .hero__word {
  transform: translate3d(0, -3px, 0) scale(1.02);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__headline.is-headline-ready:hover .hero__bullet {
  animation-play-state: running, paused;
  transform: scale(1.3);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .cls-reveal,
  .cls-reveal.is-visible,
  .hero__copy,
  .hero__media,
  .contact-hero__copy,
  .btn--primary::after,
  .service-card,
  .service-card__icon,
  .cryo-service-card,
  .cryo-areas__location,
  .cryo-areas__map,
  .area-card,
  .area-card__map,
  .stats__number,
  .hero__headline[data-headline-animate] .hero__word,
  .hero__headline[data-headline-animate] .hero__bullet,
  .hero__headline.is-headline-ready .hero__word,
  .hero__headline.is-headline-ready .hero__bullet {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    color: inherit !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
  }
}
@keyframes cls-cta-hex-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-159px, -118px, 0);
  }
}
@keyframes cls-cta-glow-drift-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(8%, 6%, 0) scale(1.08);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(-4%, 10%, 0) scale(0.96);
    opacity: 0.5;
  }
}
@keyframes cls-cta-glow-drift-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(-10%, -8%, 0) scale(1.12);
    opacity: 0.5;
  }
  100% {
    transform: translate3d(6%, -4%, 0) scale(0.94);
    opacity: 0.3;
  }
}
@keyframes cls-cta-shimmer-pass {
  0%, 62% {
    transform: translateX(-130%) skewX(-14deg);
    opacity: 0;
  }
  68% {
    opacity: 0.55;
  }
  78%, 100% {
    transform: translateX(130%) skewX(-14deg);
    opacity: 0;
  }
}
@keyframes cls-cta-vignette-pulse {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.65;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cryo-cta__pattern,
  .mve-cta__pattern,
  .cryo-cta__glow::before,
  .cryo-cta__glow::after,
  .mve-cta__glow::before,
  .mve-cta__glow::after,
  .cryo-cta__shimmer::after,
  .mve-cta__shimmer::after,
  .cryo-cta__panel::after,
  .mve-cta__panel::after {
    animation: none !important;
  }
  .cryo-cta__pattern,
  .mve-cta__pattern {
    opacity: 0.1;
  }
}
.site {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background-color: rgba(0, 58, 112, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.site-header--solid {
  background-color: #003a70;
}

.site-header--solid.is-scrolled {
  background-color: #003a70;
}

.site-header--solid + .site-main {
  padding-top: calc(37px + 104px + 24px);
}

.site-header--overlay {
  background-color: transparent;
}

.site-header--overlay .site-header__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  --nav-bar-top: 20px;
  --nav-bar-height: 85px;
}

.site-header--overlay .site-header__logo,
.site-header--overlay .site-header__logo--fallback {
  width: 62px;
}

.site-header--overlay .primary-menu {
  gap: 30px;
}

.site-header--light {
  background-color: #f7f9fc;
}

.site-header--light.is-scrolled {
  background-color: rgba(0, 58, 112, 0.94);
}

.site-header--light.is-scrolled .primary-menu a {
  color: #ffffff;
}

.site-header--light.is-scrolled .menu-toggle {
  color: #ffffff;
}

.site-header--light .site-header__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  --nav-bar-top: 20px;
  --nav-bar-height: 85px;
}

.site-header--light .site-header__logo,
.site-header--light .site-header__logo--fallback {
  width: 62px;
}

.site-header--light .primary-menu a {
  color: #2d2d2c;
}

.site-header--light .menu-toggle {
  color: #003a70;
}

.site-header--light .primary-menu {
  gap: 30px;
}

.site-header--contact {
  background-color: #ffffff;
}

.site-header--contact.is-scrolled {
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 58, 112, 0.08);
}

.site-header--contact .site-header__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  --nav-bar-top: 20px;
  --nav-bar-height: 85px;
}

.site-header--contact .site-header__logo,
.site-header--contact .site-header__logo--fallback {
  width: 62px;
}

.site-header--contact .primary-menu a {
  color: #003a70;
}

.site-header--contact.is-scrolled .primary-menu a,
.site-header--contact.is-scrolled .menu-toggle {
  color: #003a70;
}

.site-header--contact .menu-toggle {
  color: #003a70;
}

.site-header--contact .primary-menu {
  gap: 30px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 37px;
  padding-bottom: 24px;
  --nav-bar-top: 24px;
  --nav-bar-height: 104px;
}

.site-header__branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-header__logo--fallback {
  display: block;
  flex-shrink: 0;
  position: relative;
  width: 76px;
  max-width: 100%;
  aspect-ratio: 0.7262216925;
  line-height: 0;
}

.site-header__logo:not(.site-header__logo--fallback) {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  max-width: 76px;
}

.site-header__logo:not(.site-header__logo--fallback) img,
.site-header__logo:not(.site-header__logo--fallback) .custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 76px;
  max-height: 104px;
  object-fit: contain;
}

.site-header__logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}

.site-header__logo-mark--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-header__logo-mark--light {
  opacity: 1;
}

.site-header--overlay .site-header__logo-mark--light,
.site-header--solid .site-header__logo-mark--light,
.site-header.is-scrolled .site-header__logo-mark--light,
.site-header.nav-open .site-header__logo-mark--light {
  opacity: 0;
}
.site-header--overlay .site-header__logo-mark--dark,
.site-header--solid .site-header__logo-mark--dark,
.site-header.is-scrolled .site-header__logo-mark--dark,
.site-header.nav-open .site-header__logo-mark--dark {
  opacity: 1;
}

.site-header--light:not(.is-scrolled):not(.nav-open) .site-header__logo-mark--light {
  opacity: 1;
}
.site-header--light:not(.is-scrolled):not(.nav-open) .site-header__logo-mark--dark {
  opacity: 0;
}

.site-header--contact:not(.nav-open) .site-header__logo-mark--light,
.site-header--contact.is-scrolled:not(.nav-open) .site-header__logo-mark--light {
  opacity: 1;
}
.site-header--contact:not(.nav-open) .site-header__logo-mark--dark,
.site-header--contact.is-scrolled:not(.nav-open) .site-header__logo-mark--dark {
  opacity: 0;
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  color: #ffffff;
  font-size: clamp(14px, 14px + 4 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ff7606;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after,
.primary-menu .current-menu-item a::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 45;
}

@media (max-width: 1200px) {
  .site-header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
    --nav-bar-height: 48px;
    align-items: center;
  }
  .site-header__branding {
    height: var(--nav-bar-height);
  }
  .site-header__logo--fallback {
    width: auto;
    height: 40px;
    aspect-ratio: 0.7262216925;
  }
  .site-header--overlay .site-header__logo,
  .site-header--overlay .site-header__logo--fallback,
  .site-header--light .site-header__logo,
  .site-header--light .site-header__logo--fallback,
  .site-header--contact .site-header__logo,
  .site-header--contact .site-header__logo--fallback {
    width: auto;
  }
  .site-header__logo:not(.site-header__logo--fallback) img,
  .site-header__logo:not(.site-header__logo--fallback) .custom-logo {
    max-height: 40px;
    width: auto;
  }
  .site-header__actions {
    height: var(--nav-bar-height);
    gap: 12px;
  }
  .site-header__cta {
    padding: 8px 16px;
    min-height: 40px;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
  }
  .site-header__nav {
    position: fixed;
    inset: 0;
    flex: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background: transparent;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0s linear 0.3s ease;
    z-index: 50;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .site-header:not(.nav-open) .site-header__nav .primary-menu,
  .site-header:not(.nav-open) .site-header__nav .mobile-nav-footer {
    display: none;
  }
  .nav-open .site-header__inner {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    margin: 0;
    padding: max(var(--nav-bar-top), env(safe-area-inset-top, 0px)) 80px max(30px, env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    pointer-events: none;
    overflow: hidden;
    background-color: #003a70;
    background-image: radial-gradient(ellipse 90% 55% at 100% -10%, rgba(255, 118, 6, 0.22), transparent 55%), radial-gradient(ellipse 70% 45% at -10% 110%, rgba(255, 255, 255, 0.07), transparent 50%);
    animation: cls-nav-overlay-in 0.28s ease both;
  }
  .nav-open .site-header__branding {
    grid-column: 1;
    grid-row: 1;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    height: var(--nav-bar-height);
    flex-shrink: 0;
  }
  .nav-open .site-header__actions {
    grid-column: 2;
    grid-row: 1;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    height: var(--nav-bar-height);
    flex-shrink: 0;
  }
  .nav-open .site-header__cta {
    display: none !important;
  }
  .nav-open .site-header__nav {
    grid-column: 1/-1;
    grid-row: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 0 0;
    overflow: hidden;
    background: transparent;
  }
  .nav-open .site-header__nav .primary-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-open .site-header__nav .primary-menu > li {
    width: 100%;
    opacity: 0;
    animation: cls-nav-link-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(1) {
    animation-delay: 0.06s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(2) {
    animation-delay: 0.115s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(3) {
    animation-delay: 0.17s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(4) {
    animation-delay: 0.225s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(5) {
    animation-delay: 0.28s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(6) {
    animation-delay: 0.335s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(7) {
    animation-delay: 0.39s;
  }
  .nav-open .site-header__nav .primary-menu > li:nth-child(8) {
    animation-delay: 0.445s;
  }
  .nav-open .site-header__nav .primary-menu a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
  }
  .nav-open .site-header__nav .primary-menu a::after {
    display: none;
  }
  .nav-open .site-header__nav .primary-menu a:hover,
  .nav-open .site-header__nav .primary-menu a:focus-visible {
    color: #ff7606;
    padding-left: 8px;
    border-bottom-color: rgba(255, 118, 6, 0.45);
    text-decoration: none;
  }
  .nav-open .site-header__nav .primary-menu .current-menu-item > a {
    color: #ff7606;
    border-bottom-color: rgba(255, 118, 6, 0.55);
  }
  .nav-open .site-header__nav .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 30px;
    flex-shrink: 0;
    opacity: 0;
    animation: cls-nav-footer-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  }
}
@media (max-width: 992px) {
  .nav-open .site-header__inner {
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    padding-inline: 0;
  }
  .nav-open .site-header__inner {
    padding-inline: 24px;
  }
  .site-header__cta {
    padding: 8px 14px;
  }
}
.admin-bar .site-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
  .admin-bar .nav-open .site-header__inner {
    top: 0;
    height: 100vh;
    height: 100dvh;
  }
}
@media screen and (min-width: 601px) {
  .admin-bar .site-main--contact,
  .admin-bar .site-main--thank-you {
    padding-top: calc(125px + var(--wp-admin--admin-bar--height, 32px));
  }
  .admin-bar .site-header--solid + .site-main {
    padding-top: calc(calc(37px + 104px + 24px) + var(--wp-admin--admin-bar--height, 32px));
  }
}
@media screen and (min-width: 601px) and (max-width: 782px) {
  .admin-bar .nav-open .site-header__inner {
    top: var(--wp-admin--admin-bar--height, 46px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 46px));
    height: calc(100dvh - var(--wp-admin--admin-bar--height, 46px));
  }
}
.site-footer {
  margin-top: auto;
}

.site-footer__main {
  background-color: #ecf1f6;
  padding-block: 80px;
}

.site-footer__inner {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.site-footer__branding {
  flex-shrink: 0;
  width: 476px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.site-footer__logo {
  display: block;
  flex-shrink: 0;
  width: 270px;
  height: 129px;
  max-width: 100%;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover,
.site-footer__logo:focus-visible {
  opacity: 0.88;
}

.site-footer__logo-frame {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-footer__logo-image {
  position: absolute;
  display: block;
  width: 203.37%;
  height: 284.44%;
  max-width: none;
  left: -69.48%;
  top: -88.33%;
}

.site-footer__about {
  max-width: 476px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

.site-footer__meta {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding-top: 32px;
  min-width: 0;
}

.site-footer__connect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__connect-label {
  margin: 0;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
  font-weight: 600;
  color: #030303;
  white-space: nowrap;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social a {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-instagram__layers {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
}

.social-instagram__layers img:first-child {
  position: absolute;
  inset: 0;
  width: 54px;
  height: 54px;
}

.social-instagram__glyph {
  position: absolute !important;
  top: 13px;
  left: 13px;
  width: 28px !important;
  height: 28px !important;
}

.site-footer__copyright-wrap {
  width: 100%;
  border-top: 1px solid #030303;
  padding-top: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.site-footer__copyright {
  margin: 0;
  font-size: clamp(11px, 11px + 1 * (100vw - 480px) / 1440, 12px);
  line-height: 1.333;
  font-weight: 400;
  color: #030303;
  white-space: nowrap;
}

.site-footer__bar {
  background-color: #003a70;
  padding-block: 20px;
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__legal a {
  font-family: "Poppins", "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(11px, 11px + 1 * (100vw - 480px) / 1440, 12px);
  line-height: 1.333;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__branding {
    width: 100%;
  }
  .site-footer__logo {
    width: min(270px, 100%);
    height: auto;
    aspect-ratio: 2.0930232558;
  }
  .site-footer__meta {
    width: 100%;
    align-items: flex-start;
    padding-top: 0;
  }
  .site-footer__connect {
    justify-content: flex-start;
  }
  .site-footer__copyright-wrap {
    justify-content: flex-start;
  }
  .site-footer__copyright {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .site-footer__main {
    padding-block: 48px;
  }
}
.cls-container {
  width: 100%;
  max-width: calc(1400px + 260px * 2);
  margin-inline: auto;
  padding-inline: 260px;
}

.cls-container--narrow {
  max-width: calc(920px + 260px * 2);
}

.cls-container--contact {
  max-width: calc(1200px + 260px * 2);
}

@media (max-width: 1440px) {
  .cls-container {
    padding-inline: 120px;
  }
  .cls-container--contact {
    max-width: calc(1200px + 120px * 2);
  }
}
@media (max-width: 1200px) {
  .cls-container {
    padding-inline: 80px;
  }
  .cls-container--contact {
    max-width: calc(1200px + 80px * 2);
  }
}
@media (max-width: 992px) {
  .cls-container {
    padding-inline: 40px;
  }
  .cls-container--contact {
    max-width: calc(1200px + 40px * 2);
  }
}
@media (max-width: 768px) {
  .cls-container {
    padding-inline: 24px;
  }
  .cls-container--contact {
    max-width: calc(1200px + 24px * 2);
  }
}
.hero {
  position: relative;
  background-color: #003a70;
  color: #ffffff;
  overflow: hidden;
}

.hero__shell {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6982142857fr);
  align-items: start;
  column-gap: clamp(24px, 5.78vw, 111px);
  row-gap: 30px;
  padding-block: 37px clamp(48px, 3.85vw, 74px);
  min-height: clamp(680px, 46.4vw, 965px);
}

@media (min-width: 1201px) {
  .hero__container {
    max-width: 1920px;
    padding-inline: clamp(80px, 13.54vw, 260px) clamp(38px, 1.98vw, 80px);
  }
  .is-front-page .hero__container {
    padding-top: 129px;
  }
  .is-front-page .hero__copy {
    padding-top: calc(312px - 129px);
  }
  .is-front-page .hero__media {
    margin-top: -110px;
  }
  .hero__media {
    width: 951px;
  }
  .hero__image-wrap {
    height: 891px;
    aspect-ratio: auto;
  }
}
.hero__copy {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  z-index: 2;
  container-type: inline-size;
  container-name: hero-copy;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  min-width: 0;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__headline {
  color: #ffffff;
  font-size: clamp(22px, 22px + 26 * (100vw - 320px) / 1600, 48px);
  font-size: clamp(22px, 8.2cqi, 48px);
  line-height: 1.2;
  font-weight: 400;
  max-width: 100%;
}

.hero__headline-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.hero__bullet {
  color: #ff7606;
  margin-left: 0.25em;
  display: inline-block;
}

.hero__body {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
}

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 951px;
  min-width: 0;
  z-index: 1;
  justify-self: end;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.0673400673;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: calc(100% * 1112px / 951px);
  height: calc(100% * 926px / 891px);
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center 38%;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

@media (max-width: 1200px) {
  .hero__container {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding-block: 37px clamp(48px, 6vw, 80px);
    gap: 30px;
  }
  .hero__copy {
    grid-column: 1;
    order: 2;
    padding-top: 0;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
  }
  .hero__media {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-top: 0;
    margin-inline: auto;
    justify-self: center;
    align-self: start;
  }
  .hero__image-wrap {
    height: auto;
    aspect-ratio: 1.0673400673;
  }
  .hero__image {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}
@media (max-width: 768px) {
  .hero__container {
    padding-bottom: 60px;
  }
  .hero__content {
    gap: 24px;
  }
  .hero__cta {
    display: flex;
    justify-content: center;
  }
  .hero__cta .btn {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.stats {
  background-color: #181817;
  padding-block: 100px;
  color: #ffffff;
}

.stats__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.stats__heading {
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 1440, 24px);
  line-height: 1.2;
  letter-spacing: clamp(1.6px, 1.6px + 0.8 * (100vw - 480px) / 1440, 2.4px);
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}

.stats__grid {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}

.stats__item {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding-inline: 60px;
  min-width: 0;
}

.stats__item:not(:last-child) {
  border-right: 1px solid #f9fafb;
}

.stats__number {
  font-size: clamp(48px, 48px + 24 * (100vw - 480px) / 1440, 72px);
  line-height: 1;
  font-weight: 600;
  color: #ff7606;
  margin: 0;
}

.stats__label {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 992px) {
  .stats {
    padding-block: 70px;
  }
  .stats__item {
    padding-inline: 24px;
  }
}
@media (max-width: 768px) {
  .stats__grid {
    flex-direction: column;
    gap: 24px;
  }
  .stats__item {
    padding-inline: 0;
    width: 100%;
  }
  .stats__item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(249, 250, 251, 0.2);
    padding-bottom: 24px;
  }
}
.services {
  padding-block: 100px;
  background-color: #ffffff;
}

.services__container {
  max-width: calc(1399px + 260px * 2);
}

.services__intro {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 60px;
}

.services__title {
  flex: 1 1 40%;
  min-width: min(100%, 18ch);
  font-size: clamp(28px, 28px + 20 * (100vw - 480px) / 1440, 48px);
  line-height: 1.15;
  font-weight: 400;
}

.services__title-line {
  display: block;
  white-space: nowrap;
}

.services__title-line--dark {
  color: #030303;
}

.services__title-line--accent {
  color: #003a70;
}

.services__description {
  flex: 0 1 790px;
  width: 790px;
  max-width: 100%;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

.services__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__label {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.2;
  font-weight: 600;
  color: #030303;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  min-height: 330px;
  padding: 30px;
  background-color: #fcfcfc;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.service-card__icon {
  flex-shrink: 0;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service-card__title {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.2;
  font-weight: 600;
  color: #030303;
}

.service-card__description {
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.2;
  color: #030303;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .services__intro {
    gap: clamp(24px, 5vw, 60px);
  }
  .services__title {
    flex: 1 1 auto;
  }
  .services__description {
    width: auto;
    flex: 1 1 48%;
    min-width: min(100%, 280px);
  }
}
@media (max-width: 992px) {
  .services__intro {
    flex-direction: column;
    gap: 30px;
  }
  .services__title {
    min-width: 0;
    width: 100%;
  }
  .services__description {
    width: 100%;
    flex: 1 1 auto;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .services {
    padding-block: 60px;
  }
}
.service-areas {
  background-color: #ffffff;
  padding-inline: 22px;
}

.service-areas__panel {
  background-color: #181818;
  border-radius: 20px;
  overflow: hidden;
}

.service-areas__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1398px;
  margin-inline: auto;
  padding-block: 100px;
  padding-inline: 40px;
  color: #ffffff;
}

.service-areas__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 651px;
  max-width: 100%;
}

.service-areas__heading {
  color: #ffffff;
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.service-areas__text {
  color: #ffffff;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.service-areas__maps-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 327px));
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 327px;
}

.area-card__map {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.area-map__svg {
  display: block;
  width: 100%;
  height: auto;
}

.area-map__county {
  fill: #003a70;
  stroke: #5089b1;
  stroke-linejoin: bevel;
  transition: stroke 0.2s ease;
}

.area-card:hover .area-map__county,
.area-card:focus-within .area-map__county {
  stroke: #e6f0f8;
}

.area-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.area-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.area-card:hover .area-card__image--hover,
.area-card:focus-within .area-card__image--hover {
  opacity: 1;
}

.area-card__label {
  margin: 0;
  width: 100%;
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  transition: color 0.2s ease;
}

.area-card:hover .area-card__label,
.area-card:focus-within .area-card__label {
  color: #ff7606;
}

.service-areas__actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 1500px) {
  .service-areas__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .service-areas__container {
    padding-block: 80px;
    padding-inline: 80px;
  }
  .service-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(654px + 30px);
  }
}
@media (max-width: 992px) {
  .service-areas {
    padding-inline: 40px;
  }
  .service-areas__container {
    padding-block: 70px;
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .service-areas {
    padding-inline: 24px;
  }
  .service-areas__container {
    padding-block: 48px;
    padding-inline: 24px;
    gap: 30px;
  }
  .service-areas__maps-wrap {
    gap: 30px;
  }
  .service-areas__grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .service-areas__actions {
    display: flex;
    justify-content: center;
  }
  .service-areas__cta {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.cryo-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 658px;
  overflow: hidden;
  color: #ffffff;
}
@media (min-width: 1201px) {
  .cryo-hero {
    height: 658px;
  }
}

.cryo-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cryo-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cryo-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.cryo-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 58, 112, 0.1) 0%, #003a70 100%);
  pointer-events: none;
}

.cryo-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 664px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-bottom: 150px;
  text-align: center;
}
@media (min-width: 769px) {
  .cryo-hero__content {
    padding-inline: 40px;
  }
}
@media (min-width: 1201px) {
  .cryo-hero__content {
    padding-inline: 0;
  }
}

.cryo-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cryo-hero__title {
  margin: 0;
  font-size: clamp(36px, 36px + 20 * (100vw - 480px) / 1440, 56px);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.cryo-hero__title-line,
.cryo-hero__title-accent {
  display: block;
}

.cryo-hero__title-accent {
  font-weight: 700;
  color: #ff7606;
}

.cryo-hero__text {
  margin: 0;
  max-width: 100%;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}

.cryo-hero__cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .cryo-hero {
    height: auto;
    min-height: 580px;
  }
  .cryo-hero__content {
    padding-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .cryo-hero {
    min-height: 520px;
  }
  .cryo-hero__content {
    gap: 30px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .cryo-hero {
    min-height: 480px;
  }
  .cryo-hero__content {
    padding-top: calc(72px + 30px);
    padding-bottom: 64px;
    gap: 24px;
  }
  .cryo-hero__cta .btn {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.cryo-services {
  background-color: #f7f9fc;
  padding-block: 100px;
}

.cryo-services__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.cryo-services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.cryo-services__title {
  margin: 0;
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
  font-weight: 400;
  color: #2d2d2c;
}

.cryo-services__rule {
  display: block;
  width: 143px;
  height: 4px;
  background-color: #ff7606;
}

.cryo-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
}

.cryo-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding: 40px 30px;
  background-color: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 20px;
}

.cryo-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(0, 58, 112, 0.05);
  overflow: hidden;
}

.cryo-service-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cryo-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.cryo-service-card__title {
  margin: 0;
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.2;
  font-weight: 600;
  color: #030303;
}

.cryo-service-card__description {
  margin: 0;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.2;
  font-weight: 400;
  color: #030303;
}

@media (max-width: 1200px) {
  .cryo-services {
    padding-block: 80px;
  }
  .cryo-services__container {
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .cryo-services__grid {
    grid-template-columns: 1fr;
  }
  .cryo-service-card {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .cryo-services {
    padding-block: 64px;
  }
  .cryo-services__rule {
    width: 96px;
  }
  .cryo-service-card {
    padding: 30px 24px;
    gap: 30px;
  }
}
.cryo-areas {
  padding-block: 20px 0;
}

.cryo-areas__panel {
  margin-inline: 22px;
  background-color: #181818;
  border-radius: 20px;
  overflow: hidden;
}

.cryo-areas__container {
  display: grid;
  grid-template-columns: minmax(0, 584px) minmax(0, 688px);
  align-items: center;
  justify-content: space-between;
  gap: 130px;
  padding-block: 100px;
}

.cryo-areas__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 584px;
}

.cryo-areas__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 302px;
  color: #ffffff;
}

.cryo-areas__heading {
  margin: 0;
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.cryo-areas__text {
  margin: 0;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}

.cryo-areas__locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cryo-areas__location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background-color: #f7f9fc;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
}

.cryo-areas__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cryo-areas__pin img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cryo-areas__label {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  line-height: 1.2;
  font-weight: 600;
  color: #181817;
}

.cryo-areas__actions {
  margin-top: 16px;
}

.cryo-areas__map {
  margin: 0;
  width: 100%;
  max-width: 688px;
  aspect-ratio: 688/549;
  border-radius: 20px;
  overflow: hidden;
  background-color: #282828;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.cryo-areas__map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1500px) {
  .cryo-areas__container {
    gap: 80px;
  }
}
@media (max-width: 1200px) {
  .cryo-areas__panel {
    margin-inline: 40px;
  }
  .cryo-areas__container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 80px;
  }
  .cryo-areas__content {
    max-width: none;
  }
  .cryo-areas__map {
    max-width: none;
    justify-self: stretch;
  }
}
@media (max-width: 992px) {
  .cryo-areas__locations {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .cryo-areas {
    padding-block: 12px;
  }
  .cryo-areas__panel {
    margin-inline: 24px;
    border-radius: 16px;
  }
  .cryo-areas__container {
    padding-block: 56px;
    gap: 30px;
  }
  .cryo-areas__intro {
    max-width: none;
  }
  .cryo-areas__actions {
    width: 100%;
  }
  .cryo-areas__cta {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.cryo-cta {
  padding-block: 20px;
  padding-inline: 22px;
}

.cryo-cta__panel {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 456px;
  padding: 100px clamp(24px, 5vw, 40px);
  background-color: #003a70;
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
}

.cryo-cta__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #003a70;
  background-image: url("../assets/icons/cryogenic/hex-cell.svg"), url("../assets/icons/cryogenic/hex-cell.svg");
  background-repeat: repeat, repeat;
  background-size: 159px 118px, 159px 118px;
  background-position: 0 0, 79.5px 59px;
}

.cryo-cta__panel {
  isolation: isolate;
}

.cryo-cta__pattern {
  animation: cls-cta-hex-drift 52s linear infinite;
  opacity: 0.12;
  will-change: transform;
}

.cryo-cta__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cryo-cta__glow::before, .cryo-cta__glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform, opacity;
}
.cryo-cta__glow::before {
  width: min(62%, 520px);
  height: min(75%, 420px);
  left: -8%;
  top: -22%;
  background: rgba(255, 118, 6, 0.32);
  animation: cls-cta-glow-drift-a 16s ease-in-out infinite alternate;
}
.cryo-cta__glow::after {
  width: min(48%, 440px);
  height: min(58%, 360px);
  right: -6%;
  bottom: -18%;
  background: rgba(140, 195, 255, 0.16);
  animation: cls-cta-glow-drift-b 20s ease-in-out infinite alternate-reverse;
}

.cryo-cta__shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cryo-cta__shimmer::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 42%;
  height: 180%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.07) 48%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.07) 52%, transparent 62%);
  animation: cls-cta-shimmer-pass 9s ease-in-out infinite;
  will-change: transform, opacity;
}

.cryo-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(0, 18, 36, 0.42) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.12) 100%);
  animation: cls-cta-vignette-pulse 14s ease-in-out infinite;
}

.cryo-cta__inner {
  z-index: 2;
}

.cryo-cta__panel.is-visible .cryo-cta__glow::before {
  animation-duration: 12s;
}
.cryo-cta__panel.is-visible .cryo-cta__shimmer::after {
  animation-delay: 0.4s;
}

.cryo-cta__panel:hover .cryo-cta__glow::before,
.cryo-cta__panel:focus-within .cryo-cta__glow::before {
  opacity: 0.85;
}
.cryo-cta__panel:hover .cryo-cta__pattern,
.cryo-cta__panel:focus-within .cryo-cta__pattern {
  opacity: 0.16;
}

.cryo-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 956px;
  margin-inline: auto;
  text-align: center;
}

.cryo-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cryo-cta__title {
  margin: 0;
  font-size: clamp(32px, 32px + 28 * (100vw - 480px) / 1440, 60px);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.cryo-cta__title-line {
  display: block;
}

.cryo-cta__title-accent {
  font-weight: 700;
  color: #ff7606;
}

.cryo-cta__text {
  margin: 0;
  max-width: 100%;
  font-size: clamp(18px, 18px + 6 * (100vw - 480px) / 1440, 24px);
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}

.cryo-cta__actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .cryo-cta {
    padding-inline: 40px;
  }
  .cryo-cta__panel {
    min-height: 420px;
    padding-block: 80px;
  }
}
@media (max-width: 992px) {
  .cryo-cta__panel {
    min-height: auto;
    padding-block: 72px;
  }
  .cryo-cta__inner {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .cryo-cta {
    padding-block: 12px;
    padding-inline: 24px;
  }
  .cryo-cta__panel {
    border-radius: 16px;
    padding: 56px 24px;
  }
  .cryo-cta__pattern {
    background-size: 120px 88px, 120px 88px;
    background-position: 0 0, 60px 44px;
  }
  .cryo-cta__inner {
    gap: 24px;
  }
  .cryo-cta__actions {
    display: flex;
    justify-content: center;
  }
  .cryo-cta__actions .btn {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.mve-hero {
  background-color: #f7f9fc;
  color: #2d2d2c;
  overflow: hidden;
}

.mve-hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7.24vw, 139px);
  width: 100%;
  min-height: 772px;
  padding-top: calc(129px + clamp(48px, 5.2vw, 100px));
  padding-bottom: clamp(48px, 5.2vw, 100px);
}

.mve-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 664px;
  min-width: 0;
  flex: 0 1 664px;
  container-type: inline-size;
  container-name: mve-hero-copy;
}

.mve-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mve-hero__title {
  margin: 0;
  font-size: clamp(36px, 36px + 20 * (100vw - 480px) / 1440, 56px);
  font-size: clamp(32px, 8.4cqi, 56px);
  line-height: 1.2;
  font-weight: 400;
  color: #2d2d2c;
}

.mve-hero__title-line,
.mve-hero__title-accent {
  display: block;
  white-space: nowrap;
}

.mve-hero__title-accent {
  font-weight: 700;
  color: #ff7606;
}

.mve-hero__body {
  margin: 0;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

.mve-hero__media {
  position: relative;
  flex: 0 0 594px;
  width: 594px;
  max-width: 100%;
  height: 518px;
}

.mve-hero__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
}

.mve-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mve-hero__photo--back {
  top: 0;
  left: 167px;
  width: 427px;
  height: 433px;
}

.mve-hero__photo--front {
  top: 193px;
  left: 0;
  width: 320px;
  height: 325px;
}

@media (max-width: 1200px) {
  .mve-hero__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-top: 168px;
    padding-bottom: 80px;
  }
  .mve-hero__copy {
    flex: none;
    max-width: none;
  }
  .mve-hero__title-line,
  .mve-hero__title-accent {
    white-space: normal;
  }
  .mve-hero__media {
    flex: none;
    width: min(100%, 594px);
    height: auto;
    aspect-ratio: 1.1467181467;
    margin-inline: auto;
  }
  .mve-hero__photo--back {
    left: 28.11%;
    width: 71.89%;
    height: 83.59%;
  }
  .mve-hero__photo--front {
    top: 37.26%;
    width: 53.87%;
    height: 62.74%;
  }
}
@media (max-width: 768px) {
  .mve-hero__inner {
    padding-top: 152px;
    padding-bottom: 64px;
    gap: 30px;
  }
  .mve-hero__copy {
    align-items: center;
    text-align: center;
  }
  .mve-hero__cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .mve-hero__cta .btn {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.mve-categories {
  background-color: #ffffff;
  padding-block: 100px;
}

.mve-categories__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.mve-categories__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

.mve-categories__title {
  margin: 0;
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
  font-weight: 400;
  color: #2d2d2c;
}

.mve-categories__title-accent {
  font-weight: 600;
  color: #ff7606;
}

.mve-categories__intro {
  margin: 0;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

.mve-categories__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
}

.mve-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #f9fafb;
  border-radius: 16px;
}

.mve-category-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 206px;
  height: 208px;
  overflow: hidden;
  border-radius: 14px;
}

.mve-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mve-category-card__title {
  margin: 0;
  width: 100%;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #2d2d2c;
}

@media (max-width: 1440px) {
  .mve-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1200px) {
  .mve-categories {
    padding-block: 80px;
  }
  .mve-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .mve-categories {
    padding-block: 64px;
  }
  .mve-categories__header {
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }
  .mve-categories__grid {
    grid-template-columns: 1fr;
  }
}
.mve-why {
  background-color: #f7f9fc;
  padding-block: 100px;
  overflow: hidden;
}

.mve-why__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 5.26vw, 101px);
  width: 100%;
}

.mve-why__media {
  flex: 0 1 584px;
  width: 100%;
  max-width: 584px;
  min-width: 0;
}

.mve-why__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(320px, 26vw, 500px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mve-why__content {
  display: flex;
  flex: 1 1 713px;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 713px;
  min-width: 0;
  container-type: inline-size;
  container-name: mve-why-content;
}

.mve-why__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mve-why__title {
  margin: 0;
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
  font-weight: 400;
  color: #2d2d2c;
}

.mve-why__title-accent {
  font-weight: 600;
  color: #ff7606;
}

.mve-why__intro {
  margin: 0;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

.mve-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.mve-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  background-color: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 20px;
}

.mve-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(0, 58, 112, 0.05);
}

.mve-feature-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mve-feature-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  container-type: inline-size;
  container-name: mve-feature-card;
}

.mve-feature-card__title {
  margin: 0;
  font-size: clamp(16px, 5.75cqi, 20px);
  line-height: 1.2;
  font-weight: 600;
  color: #2d2d2c;
  overflow-wrap: break-word;
}

.mve-feature-card__description {
  margin: 0;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
  font-weight: 400;
  color: #030303;
  overflow-wrap: break-word;
}

@container mve-why-content (max-width: 560px) {
  .mve-why__grid {
    grid-template-columns: 1fr;
  }
  .mve-feature-card {
    padding: 18px 20px;
    gap: 16px;
  }
}
@media (max-width: 1440px) {
  .mve-why {
    padding-block: 80px;
  }
  .mve-why__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .mve-why__media {
    flex: none;
    width: 100%;
    max-width: min(584px, 100%);
    margin-inline: auto;
  }
  .mve-why__content {
    flex: none;
    max-width: none;
  }
}
@media (max-width: 1200px) {
  .mve-feature-card {
    padding: 18px 22px;
  }
}
@media (max-width: 992px) {
  .mve-why__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .mve-why {
    padding-block: 64px;
  }
  .mve-feature-card {
    padding: 18px 20px;
  }
}
.mve-cta {
  padding-block: 20px;
  padding-inline: 22px;
}

.mve-cta__panel {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 456px;
  padding: 100px clamp(24px, 5vw, 40px);
  background-color: #003a70;
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
}

.mve-cta__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #003a70;
  background-image: url("../assets/icons/cryogenic/hex-cell.svg"), url("../assets/icons/cryogenic/hex-cell.svg");
  background-repeat: repeat, repeat;
  background-size: 159px 118px, 159px 118px;
  background-position: 0 0, 79.5px 59px;
}

.mve-cta__panel {
  isolation: isolate;
}

.mve-cta__pattern {
  animation: cls-cta-hex-drift 52s linear infinite;
  opacity: 0.12;
  will-change: transform;
}

.mve-cta__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mve-cta__glow::before, .mve-cta__glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform, opacity;
}
.mve-cta__glow::before {
  width: min(62%, 520px);
  height: min(75%, 420px);
  left: -8%;
  top: -22%;
  background: rgba(255, 118, 6, 0.32);
  animation: cls-cta-glow-drift-a 16s ease-in-out infinite alternate;
}
.mve-cta__glow::after {
  width: min(48%, 440px);
  height: min(58%, 360px);
  right: -6%;
  bottom: -18%;
  background: rgba(140, 195, 255, 0.16);
  animation: cls-cta-glow-drift-b 20s ease-in-out infinite alternate-reverse;
}

.mve-cta__shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.mve-cta__shimmer::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 42%;
  height: 180%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.07) 48%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.07) 52%, transparent 62%);
  animation: cls-cta-shimmer-pass 9s ease-in-out infinite;
  will-change: transform, opacity;
}

.mve-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(0, 18, 36, 0.42) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.12) 100%);
  animation: cls-cta-vignette-pulse 14s ease-in-out infinite;
}

.mve-cta__inner {
  z-index: 2;
}

.mve-cta__panel.is-visible .mve-cta__glow::before {
  animation-duration: 12s;
}
.mve-cta__panel.is-visible .mve-cta__shimmer::after {
  animation-delay: 0.4s;
}

.mve-cta__panel:hover .mve-cta__glow::before,
.mve-cta__panel:focus-within .mve-cta__glow::before {
  opacity: 0.85;
}
.mve-cta__panel:hover .mve-cta__pattern,
.mve-cta__panel:focus-within .mve-cta__pattern {
  opacity: 0.16;
}

.mve-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 956px;
  margin-inline: auto;
  text-align: center;
}

.mve-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mve-cta__title {
  margin: 0;
  font-size: clamp(32px, 32px + 28 * (100vw - 480px) / 1440, 60px);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.mve-cta__title-line {
  display: block;
}

.mve-cta__title-accent {
  font-weight: 700;
  color: #ff7606;
}

.mve-cta__text {
  margin: 0;
  max-width: 100%;
  font-size: clamp(18px, 18px + 6 * (100vw - 480px) / 1440, 24px);
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
}

.mve-cta__actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .mve-cta {
    padding-inline: 40px;
  }
  .mve-cta__panel {
    min-height: 420px;
    padding-block: 80px;
  }
}
@media (max-width: 992px) {
  .mve-cta__panel {
    min-height: auto;
    padding-block: 72px;
  }
  .mve-cta__inner {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .mve-cta {
    padding-block: 12px;
    padding-inline: 24px;
  }
  .mve-cta__panel {
    border-radius: 16px;
    padding: 56px 24px;
  }
  .mve-cta__pattern {
    background-size: 120px 88px, 120px 88px;
    background-position: 0 0, 60px 44px;
  }
  .mve-cta__inner {
    gap: 24px;
  }
  .mve-cta__actions {
    display: flex;
    justify-content: center;
  }
  .mve-cta__actions .btn {
    width: auto !important;
    inline-size: auto !important;
    max-width: min(100%, 280px);
    max-inline-size: min(100%, 280px);
    min-width: 0;
    min-inline-size: 0;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex: 0 1 auto;
  }
}
.contact-hero {
  background-color: #ffffff;
  color: #2d2d2c;
}

.contact-hero__inner {
  display: flex;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 60px;
}

.contact-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 746px;
  text-align: center;
}

.contact-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-size: clamp(32px, 32px + 24 * (100vw - 480px) / 1440, 56px);
  line-height: 1.2;
  font-weight: 400;
  color: #2d2d2c;
}

.contact-hero__title-accent {
  font-weight: 600;
  color: #ff7606;
}

.contact-hero__intro {
  margin: 0;
  max-width: 746px;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

@media (max-width: 1200px) {
  .contact-hero__inner {
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .contact-hero__inner {
    padding-bottom: 40px;
  }
  .contact-hero__copy {
    gap: 12px;
  }
}
.contact-panel {
  background-color: #ffffff;
  padding-bottom: 100px;
}

.contact-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.399fr) minmax(0, 0.601fr);
  gap: 32px;
  align-items: stretch;
}

.contact-info,
.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
}

.contact-info {
  padding: 41px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.contact-info__title {
  margin: 0 0 24px;
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 1440, 24px);
  line-height: 1.33;
  font-weight: 600;
  color: #003a70;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info__item + .contact-info__item {
  margin-top: 24px;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 58, 112, 0.05);
}

.contact-info__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-info__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-info__label {
  margin: 0;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 500;
  color: #030303;
}

.contact-info__value {
  margin: 0;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
  font-weight: 300;
  color: #4a5565;
}

.contact-info__value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info__value a:hover,
.contact-info__value a:focus-visible {
  color: #003a70;
}

.contact-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 17px;
  border: 1px solid #f3f4f6;
  border-radius: 999px;
  background-color: #f9fafb;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  line-height: 1.43;
  font-weight: 500;
  color: #364153;
}

.contact-form-card {
  padding: 41px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.contact-form-card__title {
  margin: 0;
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 1440, 24px);
  line-height: 1.33;
  font-weight: 600;
  color: #003a70;
}

.contact-form-card__intro {
  margin: 8px 0 0;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  line-height: 1.43;
  font-weight: 300;
  color: #6a7282;
}

.contact-form-card__form {
  margin-top: 24px;
}

.contact-form-card__notice {
  margin: 0;
  padding: 24px;
  border-radius: 14px;
  background-color: #f7f9fc;
  color: #2d2d2c;
  font-size: clamp(15px, 15px + 1 * (100vw - 480px) / 1440, 16px);
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .contact-panel {
    padding-bottom: 80px;
  }
  .contact-panel__grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card__title,
  .contact-form-card__intro {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact-panel {
    padding-bottom: 64px;
  }
  .contact-info,
  .contact-form-card {
    padding: 24px 20px;
  }
}
.thank-you {
  background-color: #ffffff;
  padding-bottom: 100px;
}

.thank-you__inner {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.thank-you__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 720px;
  padding: clamp(40px, 5vw, 56px);
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.thank-you__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(255, 118, 6, 0.12);
  color: #ff7606;
}

.thank-you__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-size: clamp(32px, 32px + 24 * (100vw - 480px) / 1440, 56px);
  line-height: 1.2;
  font-weight: 400;
  color: #2d2d2c;
}

.thank-you__title-accent {
  font-weight: 600;
  color: #ff7606;
}

.thank-you__message {
  margin: 0;
  max-width: 560px;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: #2d2d2c;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.thank-you__actions .btn {
  align-self: center;
}

.thank-you__actions .btn--outline {
  color: #003a70;
  border-color: #003a70;
}

.thank-you__actions .btn--outline:hover,
.thank-you__actions .btn--outline:focus-visible {
  background-color: #003a70;
  color: #ffffff;
}

@media (max-width: 768px) {
  .thank-you {
    padding-bottom: 64px;
  }
  .thank-you__inner {
    padding-top: 40px;
  }
  .thank-you__card {
    padding: 32px 24px;
    gap: 24px;
  }
  .thank-you__actions {
    flex-direction: column;
  }
  .thank-you__actions .btn {
    width: auto;
    max-width: 100%;
  }
}
.archive-header {
  padding-block: 60px 30px;
  border-bottom: 1px solid #f9fafb;
  margin-bottom: 30px;
}

.archive-header__title {
  font-size: clamp(28px, 28px + 12 * (100vw - 480px) / 1440, 40px);
}

.archive-header__title span {
  color: #003a70;
}

.archive-header__description {
  margin-top: 12px;
  color: rgba(3, 3, 3, 0.65);
  max-width: 720px;
}

.site-main--blog,
.site-main--archive,
.site-main--search {
  padding-bottom: 80px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-block: 30px;
}

.entry {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f9fafb;
}

.entry__thumbnail {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}

.entry__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry__title {
  font-size: clamp(22px, 22px + 6 * (100vw - 480px) / 1440, 28px);
}

.entry__title a {
  color: #030303;
}

.entry__title a:hover,
.entry__title a:focus-visible {
  color: #ff7606;
}

.entry__excerpt {
  color: #2d2d2c;
}

.entry__more {
  font-weight: 700;
  color: #ff7606;
  align-self: flex-start;
}

.cls-pagination {
  margin-top: 40px;
}

.cls-pagination__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cls-pagination__list a,
.cls-pagination__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 50px;
  border: 1px solid #e1e1e1;
  font-weight: 600;
}

.cls-pagination__list .current {
  background-color: #ff7606;
  color: #ffffff;
  border-color: #ff7606;
}

.cls-pagination__list a:hover,
.cls-pagination__list a:focus-visible {
  border-color: #003a70;
  color: #003a70;
}

@media (max-width: 768px) {
  .entry {
    flex-direction: column;
  }
  .entry__thumbnail {
    width: 100%;
  }
}
.site-main--single {
  padding-block: 60px 80px;
}

.entry--single .entry__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.entry--single .entry__title {
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
}

.entry__thumbnail--single {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.entry__thumbnail--single img {
  width: 100%;
  height: auto;
}

.entry__content {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry__content h2 {
  font-size: clamp(24px, 24px + 8 * (100vw - 480px) / 1440, 32px);
  margin-top: 30px;
}

.entry__content h3 {
  margin-top: 24px;
}

.entry__content a {
  color: #ff7606;
  text-decoration: underline;
}

.entry__content ul,
.entry__content ol {
  padding-left: 1.4em;
  list-style: initial;
}

.entry__footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #f9fafb;
}

.entry__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.entry__tags-label {
  font-weight: 600;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #f9fafb;
}

.post-nav__label {
  display: block;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 1440, 14px);
  text-transform: uppercase;
  color: rgba(3, 3, 3, 0.65);
  margin-bottom: 4px;
}

.post-nav__title {
  font-weight: 600;
  color: #030303;
}

.nav-next {
  text-align: right;
}

.site-main--page {
  padding-block: 60px 80px;
}

.entry--page .entry__header {
  margin-bottom: 30px;
}

.entry--page .entry__title {
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
  line-height: 1.2;
}

.entry--page .entry__content {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 1440, 18px);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry--page .entry__content a {
  color: #ff7606;
  text-decoration: underline;
}

.site-main--contact {
  background-color: #ffffff;
  padding-top: 125px;
}

.site-main--thank-you {
  background-color: #ffffff;
  padding-top: 125px;
}

.site-main--404 {
  padding-block: 100px;
}

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.error-404__code {
  font-size: clamp(80px, 80px + 40 * (100vw - 480px) / 1440, 120px);
  line-height: 1;
  color: #ff7606;
}

.error-404__title {
  font-size: clamp(32px, 32px + 16 * (100vw - 480px) / 1440, 48px);
}

.error-404__text {
  max-width: 520px;
  color: #2d2d2c;
}

.error-404__home {
  margin-top: 12px;
}

.no-results {
  padding-block: 80px;
  text-align: center;
}

.no-results__title {
  font-size: clamp(24px, 24px + 8 * (100vw - 480px) / 1440, 32px);
  margin-bottom: 12px;
}

.no-results__body {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.widget-area {
  padding-block: 30px;
}

.widget-title {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 1440, 20px);
  margin-bottom: 12px;
}

.widget {
  margin-bottom: 30px;
}
