@font-face {
  font-family: "Site Ubuntu Sans";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("../fonts/ubuntu-sans.ttf") format("truetype");
}
@font-face {
  font-family: "Site Ubuntu Sans";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("../fonts/ubuntu-sans-italic.ttf") format("truetype");
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: #f5f2ec;
  color: #182231;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body, button, a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

:where(a, button):focus-visible {
  outline: 3px solid #e0c286;
  outline-offset: 4px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: "Site Ubuntu Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.container {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  background: #fff;
  color: #10233f;
  transform: translateY(-150%);
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: #e0c286;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: #967039;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: #c49a52;
  color: #09182b;
}
.button-primary:hover {
  background: #e0c286;
}
.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.button-light {
  background: #fff;
  color: #10233f;
}
.button-light:hover {
  background: #f5f2ec;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(9, 24, 43, 0.96);
  box-shadow: 0 8px 30px rgba(9, 24, 43, 0.15);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand strong {
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand small {
  color: #e0c286;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 38px;
}
.navigation a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navigation a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e0c286;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navigation .nav-phone {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #e0c286;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle[aria-expanded=true] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] > span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 880px;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  background: #09182b url("../img/bg-1.webp") center 40%/cover no-repeat;
  color: #fff;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 24, 43, 0.96) 0%, rgba(9, 24, 43, 0.78) 44%, rgba(9, 24, 43, 0.28) 76%, rgba(9, 24, 43, 0.45) 100%), linear-gradient(0deg, rgba(9, 24, 43, 0.84), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 90px;
  animation: hero-in 0.85s ease both;
}
.hero-content h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(48px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.hero-motto {
  max-width: 720px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.16;
}
.hero-motto em {
  color: #e0c286;
  font-style: italic;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 2;
  width: min(1240px, 100% - 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 24, 43, 0.54);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}
.hero-meta > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-meta > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-meta span {
  color: #e0c286;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 13px;
}
.hero-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-meta strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.hero-meta small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.section-heading h2 {
  margin: 0;
  color: #10233f;
  font-size: clamp(42px, 5vw, 70px);
}

.about {
  background: #f5f2ec;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.about-copy {
  padding-top: 46px;
  color: #667080;
}
.about-copy .lead {
  color: #182231;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.45;
}
.about-copy > p:not(.lead) {
  max-width: 600px;
}

.signature {
  display: flex;
  margin-top: 44px;
  padding: 23px 0;
  border-top: 1px solid rgba(16, 35, 63, 0.14);
  border-bottom: 1px solid rgba(16, 35, 63, 0.14);
  flex-direction: column;
}
.signature span {
  color: #10233f;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 19px;
  font-style: italic;
}
.signature small {
  margin-top: 4px;
  color: #8b7654;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles {
  padding: 96px 0;
  background: radial-gradient(circle at 12% 0, rgba(196, 154, 82, 0.12), transparent 30%), radial-gradient(circle at 92% 100%, rgba(196, 154, 82, 0.08), transparent 28%), #10233f;
  color: #fff;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.principles-grid article {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 42px 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 45px rgba(9, 24, 43, 0.18);
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.principles-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38px;
  width: 62px;
  height: 3px;
  background: #c49a52;
}
.principles-grid article:hover {
  border-color: rgba(224, 194, 134, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  transform: translateY(-5px);
}
.principles-grid span {
  position: absolute;
  top: 28px;
  right: 32px;
  color: rgba(224, 194, 134, 0.18);
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}
.principles-grid h3 {
  margin: auto 0 18px;
  font-size: 29px;
}
.principles-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.services {
  background: #faf9f6;
}

.services-heading {
  display: grid;
  margin-bottom: 68px;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.services-heading > p {
  max-width: 500px;
  margin: 0 0 8px auto;
  color: #667080;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(16, 35, 63, 0.14);
  border-left: 1px solid rgba(16, 35, 63, 0.14);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 40px;
  overflow: hidden;
  border-right: 1px solid rgba(16, 35, 63, 0.14);
  border-bottom: 1px solid rgba(16, 35, 63, 0.14);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.service-card:hover {
  z-index: 1;
  background: #10233f;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(16, 35, 63, 0.16);
}
.service-card:hover h3 {
  color: #fff;
}
.service-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}
.service-card > span {
  color: #a68149;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 13px;
}
.service-card h3 {
  margin: 62px 0 18px;
  color: #10233f;
  font-size: 28px;
  transition: color 0.3s;
}
.service-card p {
  margin: 0;
  color: #667080;
  font-size: 14px;
  transition: color 0.3s;
}

.cta {
  position: relative;
  padding: 96px 0;
  background: #09182b url("../img/bg-3.webp") center/cover no-repeat fixed;
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 43, 0.84);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-inner h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 62px);
}

.contact {
  background: #f5f2ec;
  padding-bottom: 80px;
}

.contact-heading {
  margin-bottom: 68px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.contact-details {
  border-top: 1px solid rgba(16, 35, 63, 0.14);
}

.contact-row {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 35, 63, 0.14);
  flex-direction: column;
}
.contact-row small {
  margin-bottom: 7px;
  color: #967039;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-row a {
  width: fit-content;
  color: #10233f;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  overflow-wrap: anywhere;
}
.contact-row a:hover {
  color: #967039;
}
.contact-row p {
  margin: 0;
  color: #10233f;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 19px;
}
.contact-row p span {
  color: #667080;
  font-family: "Site Ubuntu Sans", sans-serif;
  font-size: 12px;
}

.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(16, 35, 63, 0.14);
  border-left: 1px solid rgba(16, 35, 63, 0.14);
}

.location-card {
  min-height: 310px;
  padding: 38px;
  border-right: 1px solid rgba(16, 35, 63, 0.14);
  border-bottom: 1px solid rgba(16, 35, 63, 0.14);
  transition: background 0.3s, color 0.3s;
}
.location-card > span {
  color: #967039;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.location-card h3 {
  margin: 42px 0 15px;
  color: #10233f;
  font-size: 32px;
}
.location-card address {
  min-height: 76px;
  color: #667080;
  font-size: 13px;
  font-style: normal;
}
.location-card a {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid currentColor;
  color: #10233f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.location-card.active {
  background: #10233f;
  color: #fff;
}
.location-card.active > span {
  color: #e0c286;
}
.location-card.active h3, .location-card.active a {
  color: #fff;
}
.location-card.active address {
  color: rgba(255, 255, 255, 0.65);
}

.map-wrap {
  position: relative;
  margin-top: 70px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(1);
}

.map-tabs {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  padding: 5px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 35, 63, 0.2);
}
.map-tabs button {
  padding: 11px 16px;
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.map-tabs button.active {
  background: #10233f;
  color: #fff;
}

.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1100;
  display: grid;
  width: min(380px, 100% - 48px);
  padding: 20px;
  border: 1px solid rgba(224, 194, 134, 0.22);
  border-left: 3px solid #c49a52;
  background: rgba(31, 43, 58, 0.97);
  box-shadow: 0 20px 55px rgba(9, 24, 43, 0.34), 0 4px 14px rgba(9, 24, 43, 0.18);
  color: #fff;
  gap: 16px;
}
.cookie-notice[hidden] {
  display: none;
}
.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.6;
}
.cookie-notice button {
  justify-self: start;
  padding: 7px 13px;
  border: 1px solid #c49a52;
  background: transparent;
  color: #e0c286;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cookie-notice button:hover {
  border-color: #e0c286;
  background: #e0c286;
  color: #09182b;
}

.footer {
  padding: 48px 0;
  background: #09182b;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner p, .footer-inner > a:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-inner > a:last-child:hover {
  color: #fff;
}

.footer-brand {
  opacity: 0.85;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1000px) {
  .section {
    padding: 100px 0;
  }
  .menu-toggle {
    display: block;
    z-index: 2;
  }
  .navigation {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(380px, 100%);
    height: 100dvh;
    padding: 120px 40px 50px;
    background: #09182b;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
  }
  .navigation.open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .navigation a {
    font-family: "Site Ubuntu Sans", sans-serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }
  .navigation .nav-phone {
    margin-top: 15px;
    font-family: "Site Ubuntu Sans", sans-serif;
    font-size: 13px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-meta {
    bottom: 18px;
    width: calc(100% - 32px);
  }
  .hero-meta > div {
    padding: 17px 18px;
  }
  .about-grid {
    gap: 60px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1240px);
  }
  .section {
    padding: 78px 0;
  }
  .header-inner {
    min-height: 74px;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .hero {
    display: block;
    min-height: 0;
    height: auto;
    padding-top: 112px;
    background-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 24, 43, 0.96), rgba(9, 24, 43, 0.72)), linear-gradient(0deg, rgba(9, 24, 43, 0.8), transparent);
  }
  .hero-content {
    padding-bottom: 44px;
  }
  .hero-content h1 {
    font-size: clamp(40px, 11vw, 58px);
  }
  .hero-motto {
    font-size: clamp(25px, 7.5vw, 34px);
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-meta {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr;
    transform: none;
  }
  .hero-meta > div {
    min-height: 78px;
    justify-content: flex-start;
    padding: 15px max(24px, (100vw - 688px) / 2);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }
  .hero-meta > div:last-child {
    border-right: 0;
    border-bottom: 0;
  }
  .hero-meta > div > span {
    display: block;
    min-width: 22px;
  }
  .hero-meta strong {
    margin-bottom: 3px;
    font-size: 13px;
    line-height: 1.35;
  }
  .hero-meta small {
    display: block;
    font-size: 10px;
  }
  .about-grid, .services-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-copy {
    padding-top: 0;
  }
  .services-heading > p {
    margin-left: 0;
  }
  .principles {
    padding: 70px 0;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .principles-grid article {
    min-height: 235px;
    padding: 36px 30px;
  }
  .principles-grid article::before {
    left: 30px;
  }
  .principles-grid span {
    top: 24px;
    right: 28px;
    font-size: 50px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 260px;
    padding: 32px;
  }
  .service-card h3 {
    margin-top: 43px;
  }
  .cta {
    padding: 75px 0;
    background-attachment: scroll;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .locations {
    grid-template-columns: 1fr;
  }
  .location-card {
    min-height: 280px;
  }
  .map-wrap {
    margin-top: 50px;
  }
  .map-wrap iframe {
    height: 420px;
  }
  .map-tabs {
    top: 10px;
    right: 10px;
    left: 10px;
    justify-content: stretch;
  }
  .map-tabs button {
    flex: 1;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-notice {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 17px;
    gap: 13px;
  }
}
@media (max-width: 430px) {
  .brand strong {
    font-size: 14px;
  }
  .brand small {
    font-size: 8px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-motto {
    font-size: 27px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .contact-row a {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/*# sourceMappingURL=styles-v2.css.map */
