@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-024F;
}

@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-024F;
}

:root {
  --ink: #102e42;
  --ink-soft: #294858;
  --deep: #082538;
  --teal: #087b79;
  --teal-bright: #25bdb3;
  --sky: #d9eff1;
  --coral: #d96f4f;
  --sand: #f1dfc6;
  --cream: #f8f4ea;
  --paper: #fffdf8;
  --line: rgba(16, 46, 66, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 37, 56, 0.13);
  --shadow-deep: 0 35px 90px rgba(3, 26, 39, 0.34);
  --container: 1240px;
  --serif: "Lora", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body:has(.lightbox[open]) {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

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

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

button,
input {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--deep);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.fact-bar {
  color: #d9f5ef;
  background: var(--deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fact-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-bar p {
  margin: 0;
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 189, 179, 0.13);
}

.site-header {
  position: sticky;
  z-index: 200;
  top: 0;
  color: var(--white);
  background: rgba(8, 37, 56, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 37, 56, 0.98);
  box-shadow: 0 14px 40px rgba(2, 22, 34, 0.18);
}

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

.brand {
  position: relative;
  flex: 0 0 auto;
  width: 188px;
  height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.28);
  transform-origin: 50% 58%;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.22));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.primary-nav > a:not(.nav-call) {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.primary-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
  color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  min-height: 48px;
  padding: 8px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--deep);
  background: var(--sand);
  border-radius: 13px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-call span {
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.68;
}

.nav-call:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: clamp(78px, 8vw, 120px) 0 68px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(37, 189, 179, 0.16), transparent 29%),
    linear-gradient(130deg, #0b3249 0%, var(--deep) 55%, #092737 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(37, 189, 179, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  top: 18%;
  left: -180px;
  width: 420px;
  height: 420px;
}

.hero-orbit--two {
  top: 25%;
  left: -110px;
  width: 280px;
  height: 280px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c4eee8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span + span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.55rem, 6.2vw, 6.9rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero h1 em,
.section h2 em,
.contact h2 em {
  color: var(--teal-bright);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--deep);
  background: var(--teal-bright);
  box-shadow: 0 15px 35px rgba(37, 189, 179, 0.22);
}

.button--primary:hover {
  background: #55d3c9;
  box-shadow: 0 20px 45px rgba(37, 189, 179, 0.28);
}

.button--quiet {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.button--quiet:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--light {
  color: var(--deep);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}

.button--light:hover {
  background: var(--sand);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-notes {
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.hero-notes li {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  transform: translate3d(0, var(--hero-shift, 0), 0);
  transition: transform 0.08s linear;
}

.hero-photo {
  position: absolute;
  inset: 0 0 20px 45px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 190px 34px 34px 34px;
  box-shadow: var(--shadow-deep);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 27, 41, 0.74) 100%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-stage:hover .hero-photo img {
  transform: scale(1.035);
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  max-width: 250px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: right;
}

.hero-proof {
  position: absolute;
  z-index: 4;
  top: 52px;
  left: 0;
  max-width: 250px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--deep);
  background: rgba(255, 253, 248, 0.96);
  border-radius: 16px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(12px);
}

.hero-proof__mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.hero-proof p {
  margin: 0;
  line-height: 1.25;
}

.hero-proof small,
.hero-proof strong {
  display: block;
}

.hero-proof small {
  margin-bottom: 4px;
  color: #62747c;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof strong {
  font-size: 0.82rem;
}

.hero-detail {
  position: absolute;
  z-index: 4;
  right: -30px;
  bottom: 0;
  width: 190px;
  margin: 0;
  padding: 7px;
  color: var(--deep);
  background: var(--paper);
  border-radius: 20px;
  box-shadow: var(--shadow-deep);
  transform: rotate(2.5deg);
}

.hero-detail img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-detail figcaption {
  padding: 9px 10px 5px;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-facts {
  position: relative;
  z-index: 3;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-facts article {
  min-width: 0;
  padding: 20px clamp(15px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-facts article:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-facts small,
.hero-facts strong {
  display: block;
}

.hero-facts small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.3vw, 1.16rem);
  font-weight: 500;
  line-height: 1.35;
}

.section-index {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index--light {
  color: #91ddd4;
}

.section h2,
.contact h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  justify-content: space-between;
  gap: clamp(50px, 9vw, 150px);
}

.intro h2 {
  max-width: 700px;
}

.intro h2 em,
.look-for h2 em,
.visit h2 em,
.questions h2 em {
  color: var(--coral);
}

.intro-copy {
  align-self: end;
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.spaces {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.spaces::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(37, 189, 179, 0.15), transparent 66%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.67);
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 15px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #183f55;
  border: 0;
  border-radius: 22px;
  cursor: zoom-in;
  text-align: left;
  isolation: isolate;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(6, 31, 45, 0.86) 100%);
  transition: background 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery-card > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.gallery-card small {
  color: #91ddd4;
  font-size: 0.62rem;
  font-weight: 800;
}

.gallery-card strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.gallery-card i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-style: normal;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-card:hover i {
  color: var(--deep);
  background: var(--teal-bright);
  transform: rotate(45deg);
}

.look-for {
  background: var(--paper);
}

.look-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(55px, 9vw, 140px);
}

.look-sticky {
  align-self: start;
  position: sticky;
  top: 138px;
}

.look-sticky p:not(.section-index) {
  max-width: 520px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  padding: 10px 0;
  color: var(--teal);
  border-bottom: 1px solid rgba(8, 123, 121, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.look-cards {
  border-top: 1px solid var(--line);
}

.look-card {
  min-height: 235px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}

.look-card:hover {
  padding-inline: 22px;
  background: var(--cream);
}

.look-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #056461;
  background: var(--sky);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.look-kicker {
  margin-bottom: 5px;
  color: #a43d28;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.look-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
}

.look-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.visit {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 46, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 46, 66, 0.035) 1px, transparent 1px),
    var(--sand);
  background-size: 44px 44px;
}

.visit-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.48fr);
  align-items: end;
  gap: 50px;
}

.visit-heading > p {
  color: var(--ink-soft);
}

.visit-route {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  counter-reset: route;
}

.visit-route li {
  position: relative;
  min-height: 345px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 46, 66, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(16, 46, 66, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-route li:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.visit-route li::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 175px;
  height: 175px;
  border: 28px solid rgba(8, 123, 121, 0.07);
  border-radius: 50%;
}

.route-number {
  width: 52px;
  height: 52px;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 800;
}

.route-time {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-route h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
}

.visit-route li > p:last-of-type {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.checklist {
  margin-top: 70px;
  padding: clamp(30px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(250px, 0.66fr) minmax(0, 1.2fr);
  gap: clamp(35px, 7vw, 90px);
  color: var(--white);
  background: var(--deep);
  border-radius: 30px;
  box-shadow: var(--shadow-deep);
}

.checklist-label {
  margin-bottom: 11px;
  color: #8edbd2;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.checklist h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.14;
}

.checklist-copy > p:not(.checklist-label) {
  color: rgba(255, 255, 255, 0.62);
}

.check-progress {
  margin-top: 28px;
}

.check-progress > span {
  height: 6px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

.check-progress i {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--teal-bright), #81ded4);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.check-progress strong {
  margin-top: 10px;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.reset-checklist {
  margin-top: 15px;
  padding: 0;
  color: #9bded6;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(155, 222, 214, 0.36);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 800;
}

.checklist-items {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  border: 0;
}

.checklist-items label {
  min-height: 60px;
  padding: 14px 17px;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.checklist-items label:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(37, 189, 179, 0.4);
  transform: translateX(4px);
}

.checklist-items input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--teal-bright);
}

.checklist-items label:has(input:checked) {
  color: var(--white);
  background: rgba(37, 189, 179, 0.12);
  border-color: rgba(37, 189, 179, 0.45);
}

.facts {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0b3349, #071f30 72%);
}

.facts-glow {
  position: absolute;
  top: -350px;
  left: -250px;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(37, 189, 179, 0.2), transparent 68%);
  pointer-events: none;
}

.facts-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.facts-copy {
  align-self: start;
  position: sticky;
  top: 138px;
}

.facts-copy p:not(.section-index) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
}

.facts-list {
  margin: 0;
  border-top: 1px solid var(--white-line);
}

.facts-list > div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--white-line);
}

.facts-list dt {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.4;
}

.boundary-note {
  position: relative;
  margin-top: 65px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--white-line);
  border-radius: 18px;
}

.boundary-note > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: var(--sand);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.boundary-note p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.87rem;
}

.boundary-note strong {
  color: var(--white);
}

.questions {
  background: var(--paper);
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 135px);
}

.questions-intro > p:not(.section-index) {
  max-width: 470px;
  color: var(--ink-soft);
}

.phone-card {
  max-width: 390px;
  margin-top: 36px;
  padding: 23px 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(8, 123, 121, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(8, 123, 121, 0.26);
}

.phone-card small,
.phone-card strong {
  display: block;
  grid-column: 1 / -1;
}

.phone-card small {
  color: #efffff;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-card strong {
  margin: 5px 0 18px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.phone-card span {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.phone-card i {
  font-style: normal;
  transition: transform 0.2s ease;
}

.phone-card:hover i {
  transform: translateX(5px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 58px 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 600;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.25s ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  background: var(--sky);
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 0 0;
  padding: 0 58px 26px 0;
  color: var(--ink-soft);
}

.contact {
  padding: 70px 0 0;
  background: var(--paper);
}

.contact-shell {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.1fr);
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
  border-radius: 34px 34px 0 0;
}

.contact-photo {
  min-height: 590px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.contact-shell:hover .contact-photo img {
  transform: scale(1.025);
}

.contact-copy {
  position: relative;
  padding: clamp(44px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .section-index--light {
  color: #ffffff;
}

.contact-copy::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 400px;
  height: 400px;
  border: 55px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.contact h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contact h2 em {
  color: var(--sand);
}

.contact-copy > p:not(.section-index) {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: #f4ffff;
}

.contact-actions {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.contact address {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding-top: 20px;
  color: #edffff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-style: normal;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--deep);
}

.footer-main {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 210px minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer {
  width: 205px;
  height: 78px;
}

.footer-main > p {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-main nav a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #95a6af;
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.thank-you-page {
  min-height: 100dvh;
  padding: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(37, 189, 179, 0.2), transparent 34%),
    var(--deep);
}

.thank-you-card {
  width: min(100%, 680px);
  padding: clamp(34px, 7vw, 72px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow-deep);
}

.thank-you-card .brand {
  margin-bottom: 36px;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.thank-you-card > p:not(.section-index) {
  color: rgba(255, 255, 255, 0.72);
}

.thank-you-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 130;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(8, 37, 56, 0.23);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal);
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  height: min(90dvh, 820px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #061e2d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
}

.lightbox::backdrop {
  background: rgba(2, 18, 28, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #03131d;
}

.lightbox figcaption {
  min-height: 64px;
  padding: 18px 90px;
  text-align: center;
  font-family: var(--serif);
  font-size: 1rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(6, 30, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--deep);
  background: var(--teal-bright);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal="left"] {
  transform: translateX(-28px);
}

.js [data-reveal="right"] {
  transform: translateX(28px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.nav-call) {
    font-size: 0.66rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1fr);
    gap: 50px;
  }

  .hero-stage {
    min-height: 570px;
  }

  .hero-detail {
    right: -8px;
  }

  .visit-route li {
    padding: 29px;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 84px;
  }

  .fact-bar__location {
    display: none;
  }

  .fact-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 172px;
    height: 62px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 199;
    top: 78px;
    right: 0;
    left: 0;
    max-height: 0;
    padding: 0 24px;
    display: grid;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    color: var(--white);
    background: rgba(8, 37, 56, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.35s;
  }

  .primary-nav.is-open {
    max-height: calc(100dvh - 78px);
    padding-top: 18px;
    padding-bottom: 26px;
    visibility: visible;
    opacity: 1;
    overflow-y: auto;
  }

  .primary-nav > a:not(.nav-call) {
    padding: 16px 2px;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    margin-top: 18px;
    padding: 14px 18px;
    flex-direction: row;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    width: min(100%, 700px);
    min-height: 610px;
    margin-inline: auto;
  }

  .hero-photo {
    inset-inline: 35px;
  }

  .hero-proof {
    left: 0;
  }

  .hero-detail {
    right: 0;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts article:nth-child(3) {
    border-left: 0;
  }

  .hero-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-facts article:nth-child(3) {
    padding-left: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card--wide {
    grid-column: span 1;
  }

  .look-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .look-sticky,
  .facts-copy {
    position: static;
  }

  .look-sticky h2,
  .facts-copy h2 {
    max-width: 760px;
  }

  .visit-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .visit-route {
    grid-template-columns: 1fr;
  }

  .visit-route li {
    min-height: 0;
  }

  .route-number {
    margin-bottom: 35px;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .questions-grid {
    grid-template-columns: 1fr;
  }

  .phone-card {
    max-width: 470px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .fact-bar__inner {
    min-height: 32px;
    font-size: 0.57rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding: 60px 0 45px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-photo {
    inset: 0 10px 20px 28px;
    border-radius: 120px 26px 26px 26px;
  }

  .hero-photo figcaption {
    right: 22px;
    bottom: 22px;
    left: 24px;
    display: block;
  }

  .hero-photo figcaption strong {
    display: block;
    margin-top: 4px;
    font-size: 1.1rem;
    text-align: left;
  }

  .hero-proof {
    top: 34px;
    padding: 13px 15px;
  }

  .hero-proof__mark {
    width: 31px;
    height: 31px;
  }

  .hero-detail {
    width: 145px;
  }

  .hero-detail img {
    height: 98px;
  }

  .hero-facts {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .hero-facts article,
  .hero-facts article:first-child,
  .hero-facts article:nth-child(3) {
    padding: 15px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-facts article:last-child {
    border-bottom: 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .gallery-card--tall {
    grid-row: span 1;
  }

  .look-grid {
    gap: 45px;
  }

  .look-card {
    min-height: 0;
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .look-card:hover {
    padding-inline: 10px;
  }

  .visit-route li {
    padding: 28px;
  }

  .checklist {
    margin-top: 48px;
    padding: 32px 20px;
    border-radius: 23px;
  }

  .checklist-items label {
    padding: 13px;
  }

  .facts-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .boundary-note {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding-right: 48px;
  }

  .faq-list details p {
    padding-right: 8px;
  }

  .contact {
    padding-top: 36px;
  }

  .contact-shell {
    width: calc(100% - 20px);
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 26px 26px 0 0;
  }

  .contact-photo {
    min-height: 340px;
  }

  .contact-copy {
    padding: 42px 24px 52px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-main nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 160;
    right: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 10px;
    height: 58px;
    padding: 5px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: rgba(8, 37, 56, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    box-shadow: 0 16px 45px rgba(8, 37, 56, 0.34);
    backdrop-filter: blur(16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    color: var(--deep);
    background: var(--teal-bright);
  }

  body.menu-open .mobile-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  .back-to-top {
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .lightbox {
    width: 96vw;
    height: 88dvh;
    border-radius: 18px;
  }

  .lightbox figcaption {
    padding: 16px 70px;
    font-size: 0.84rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    width: 156px;
  }

  .hero-stage {
    min-height: 475px;
  }

  .hero-photo {
    left: 20px;
  }

  .hero-proof {
    max-width: 208px;
  }

  .hero-proof small {
    display: none;
  }

  .hero-detail {
    width: 126px;
  }

  .hero-detail img {
    height: 82px;
  }

  .hero-detail figcaption {
    font-size: 0.77rem;
  }

  .hero-notes {
    gap: 6px;
  }

  .hero-notes li {
    font-size: 0.6rem;
  }

  .gallery-grid {
    grid-auto-rows: 255px;
  }

  .look-card {
    grid-template-columns: 1fr;
  }

  .route-number {
    margin-bottom: 24px;
  }

  .phone-card strong {
    font-size: 1.55rem;
  }
}

@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;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-stage {
    transform: none !important;
  }
}
