:root {
  --teal: #008aa3;
  --teal-dark: #00697a;
  --aqua: #16bfd0;
  --green: #2e8b61;
  --gold: #c49737;
  --ink: #172423;
  --muted: #5e6c68;
  --line: #dce5e0;
  --paper: #fbfcfb;
  --white: #ffffff;
  --mist: #eef7f4;
  --shadow: 0 18px 46px rgba(23, 36, 35, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 40px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 28, 27, 0.72), rgba(12, 28, 27, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(23, 36, 35, 0.08);
  backdrop-filter: blur(12px);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, -1.2%, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(0, 138, 163, 0.22);
  }
  50% {
    box-shadow: 0 16px 36px rgba(0, 138, 163, 0.34);
  }
}

@keyframes activeSlideImage {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

.site-header {
  animation: headerDrop 520ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-solid .main-nav a:hover,
.site-header.is-solid .main-nav a:focus-visible {
  background: var(--mist);
}

.header-cta {
  gap: 8px;
  color: var(--white);
  background: var(--green);
}

.header-cta svg,
.btn svg,
.text-action svg,
.quick-info svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 30, 30, 0.78), rgba(10, 30, 30, 0.4), rgba(10, 30, 30, 0.08)),
    linear-gradient(180deg, rgba(10, 30, 30, 0.2), rgba(10, 30, 30, 0.52));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.hero-content > * {
  animation: fadeUp 760ms ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 110ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 220ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 330ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 4.8rem;
  line-height: 0.96;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 138, 163, 0.22);
}

.hero .btn.primary {
  animation: softPulse 3.4s ease-in-out infinite;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--teal-dark);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.btn.outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn.light {
  color: var(--teal-dark);
  background: var(--white);
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.booking-band {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
}

.booking-intro h2,
.section-copy h2,
.section-heading h2,
.contact-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.1;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  min-width: 0;
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  text-transform: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 138, 163, 0.16);
}

.wide-field {
  grid-column: span 3;
}

.booking-submit {
  width: 100%;
  border: 0;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.form-message.is-error {
  color: #b5472f;
}

.quick-info {
  background: var(--mist);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 0;
}

.quick-info article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  background: var(--white);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-info article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(23, 36, 35, 0.08);
}

.quick-info svg {
  flex: 0 0 auto;
  color: var(--green);
}

.video-section,
.split-section,
.tourism-section,
.map-section {
  padding: 88px 0;
}

.video-section {
  background:
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 138, 163, 0.16), rgba(46, 139, 97, 0.16)),
    #10211f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.video-frame video {
  position: relative;
  width: min(100%, 360px);
  max-height: 720px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-panel address,
.service-card p,
.tour-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.room-action {
  margin-top: 28px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.feature-list svg {
  flex: 0 0 auto;
  width: 18px;
  color: var(--teal);
}

.rooms-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rooms-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 36, 35, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.rooms-gallery img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 34px rgba(23, 36, 35, 0.14);
}

.rooms-gallery img:nth-child(1) {
  grid-row: span 2;
  height: 432px;
}

.rooms-carousel {
  min-width: 0;
}

.rooms-carousel .carousel-viewport {
  box-shadow: 0 18px 44px rgba(23, 36, 35, 0.14);
}

.rooms-carousel .carousel-slide button {
  height: clamp(360px, 48vw, 520px);
  min-height: 360px;
}

.rooms-carousel .carousel-control {
  width: 54px;
  height: 54px;
  color: var(--white);
  background: rgba(0, 105, 122, 0.92);
  box-shadow: 0 14px 34px rgba(0, 78, 91, 0.28);
}

.rooms-carousel .carousel-control:hover,
.rooms-carousel .carousel-control:focus-visible {
  background: var(--green);
}

.rooms-strip {
  padding: 0 0 88px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 36, 35, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.tour-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 138, 163, 0.32);
  box-shadow: 0 20px 42px rgba(23, 36, 35, 0.12);
}

.service-card img,
.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card:hover img,
.tour-card:hover img {
  transform: scale(1.05);
}

.service-card div,
.tour-card div {
  padding: 20px;
}

.service-card h3,
.tour-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.service-card p,
.tour-card p {
  margin: 0;
}

.tourism-section {
  background: #f1f8f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.text-action:hover,
.text-action:focus-visible {
  color: var(--green);
  outline: none;
}

.gallery-carousel {
  position: relative;
  isolation: isolate;
}

.tourism-carousel-wrapper {
  margin-top: 40px;
  scroll-margin-top: 112px;
}

.tourism-carousel .carousel-viewport {
  background: #0f1f1d;
}

.tourism-carousel .carousel-slide button {
  height: min(70vh, 680px);
  min-height: 460px;
  background: #0f1f1d;
}

.tourism-carousel .carousel-slide img {
  object-fit: contain;
  transform: none;
}

.tourism-carousel .carousel-slide.is-active img {
  animation: none;
}

.carousel-main {
  position: relative;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #13211f;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transform: translateX(0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide button {
  position: relative;
  display: block;
  width: 100%;
  height: min(62vh, 620px);
  min-height: 430px;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: var(--white);
  background: #13211f;
  cursor: zoom-in;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.carousel-slide.is-active img {
  animation: activeSlideImage 6.5s ease-in-out infinite alternate;
}

.carousel-slide span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(19, 33, 31, 0.74);
  font-weight: 900;
  backdrop-filter: blur(8px);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 380ms ease, opacity 380ms ease;
}

.carousel-slide.is-active span {
  transform: translateY(0);
  opacity: 1;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(23, 36, 35, 0.18);
  cursor: pointer;
  touch-action: manipulation;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--white);
  outline: none;
  transform: translateY(-50%) scale(1.06);
}

.carousel-control svg {
  width: 22px;
  height: 22px;
}

.carousel-control.previous {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carousel-dots button {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #c9d8d2;
  cursor: pointer;
  touch-action: manipulation;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-dots button.is-active {
  width: 54px;
  background: var(--teal);
}

.carousel-dots button:hover,
.carousel-dots button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.tourism-carousel .carousel-footer {
  align-items: flex-start;
}

.tourism-carousel .carousel-dots {
  flex: 1;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 3px 0 8px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.tourism-carousel .carousel-dots button {
  flex: 0 0 82px;
  width: 82px;
  height: 58px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(23, 36, 35, 0.1);
  scroll-snap-align: start;
}

.tourism-carousel .carousel-dots button.is-active {
  width: 82px;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 138, 163, 0.15), 0 10px 24px rgba(23, 36, 35, 0.16);
}

.tourism-carousel .carousel-dots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms ease, border-color 180ms ease;
}

.carousel-open:hover,
.carousel-open:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 138, 163, 0.38);
  outline: none;
}

.carousel-open svg {
  width: 18px;
  height: 18px;
}

.map-section {
  background: var(--white);
}

.map-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-panel address {
  margin: 18px 0 0;
  font-style: normal;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.final-cta {
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 105, 122, 0.96), rgba(46, 139, 97, 0.92)),
    url("assets/gallery/2351.jpg") center/cover;
}

.final-cta .section-kicker {
  color: #ffe5a8;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #13211f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.lightbox {
  width: min(980px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(10, 20, 20, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ink);
  animation: fadeUp 240ms ease both;
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .booking-grid,
  .video-grid,
  .split-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .info-list,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-field {
    grid-column: span 2;
  }

  .rooms-gallery img:nth-child(1),
  .rooms-gallery img {
    height: 240px;
  }

  .rooms-carousel .carousel-slide button {
    height: 440px;
    min-height: 340px;
  }

  .carousel-slide button {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .main-nav a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content,
  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions,
  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .booking-form,
  .info-list,
  .feature-list,
  .rooms-gallery,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wide-field {
    grid-column: span 1;
  }

  .booking-intro h2,
  .section-copy h2,
  .section-heading h2,
  .contact-panel h2,
  .final-cta h2 {
    font-size: 1.9rem;
  }

  .video-section,
  .split-section,
  .tourism-section,
  .map-section {
    padding: 66px 0;
  }

  .rooms-strip {
    padding-bottom: 66px;
  }

  .contact-panel {
    padding: 24px;
  }

  .carousel-slide button {
    height: 62vh;
    min-height: 320px;
  }

  .rooms-carousel .carousel-slide button {
    height: 58vh;
    min-height: 330px;
  }

  .tourism-carousel .carousel-slide button {
    height: 58vh;
    min-height: 330px;
  }

  .carousel-control {
    width: 46px;
    height: 46px;
  }

  .carousel-control.previous {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .carousel-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .carousel-dots {
    justify-content: center;
  }

  .tourism-carousel .carousel-dots {
    justify-content: flex-start;
  }

  .tourism-carousel .carousel-dots button,
  .tourism-carousel .carousel-dots button.is-active {
    flex-basis: 74px;
    width: 74px;
    height: 54px;
  }

  .carousel-open {
    width: 100%;
  }

  .video-frame {
    min-height: auto;
    padding: 24px;
  }

  .video-frame video {
    width: min(100%, 330px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
