:root {
  --bg1: #071b2b;
  --bg2: #0b2a3e;
  --sand: #ffd8a8;
  --sun: #ffb703;
  --sea: #2ec4b6;
  --ink: #f4f7ff;
  --mut: #bfd3e6;
  --card: rgba(255, 255, 255, 0.08);
  --card2: rgba(255, 255, 255, 0.06);
  --br: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --r: 22px;
  --max: 1180px;
  --font:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(
      900px 520px at 10% -20%,
      rgba(255, 183, 3, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 95% 0%,
      rgba(46, 196, 182, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg1), #04111b 75%, #030d14);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.no-scroll {
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ribbon */
.ribbon {
  background: rgba(2, 10, 16, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}
.ribbon__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.ribbon__left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(244, 247, 255, 0.92);
}
.ribbon__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ribbon__right a {
  font-weight: 900;
  font-size: 13px;
  color: rgba(244, 247, 255, 0.92);
}
.ribbon__right a:hover {
  text-decoration: underline;
}
.sep {
  opacity: 0.5;
}
.spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 18px rgba(255, 183, 3, 0.45);
}

/* header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 27, 43, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.hdr.is-scrolled {
  background: rgba(7, 27, 43, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.18),
    rgba(46, 196, 182, 0.1)
  );
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo__text b {
  font-size: 14px;
  letter-spacing: 0.2px;
}
.logo__text small {
  font-size: 12px;
  color: var(--mut);
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav__a {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(244, 247, 255, 0.9);
  border: 1px solid transparent;
}
.nav__a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.nav__a.is-active {
  background: rgba(255, 183, 3, 0.12);
  border-color: rgba(255, 183, 3, 0.35);
}

.hdr__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  font-size: 13px;
}
.chip__ic {
  filter: saturate(1.2);
}
.mbtn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  padding: 12px;
}
.mbtn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  margin: 5px 0;
  opacity: 0.9;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  font-size: 13px;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(0);
}
.btn--sun {
  border-color: rgba(255, 183, 3, 0.4);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.22),
    rgba(255, 183, 3, 0.1)
  );
}
.btn--ghost {
  background: transparent;
}
.btn--full {
  width: 100%;
}
.ic {
  display: inline-flex;
}

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 16px;
}
.drawer.is-open {
  display: flex;
}
.drawer__panel {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 27, 43, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.xbtn {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  color: #fff;
}
.drawer__links {
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.drawer__a {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  margin: 6px 0;
}
.drawer__a.is-active {
  border-color: rgba(255, 183, 3, 0.4);
  background: rgba(255, 183, 3, 0.1);
}
.drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 14px;
}

/* hero */
.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  height: 100vh;
  display: flex;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 15% 20%,
      rgba(255, 183, 3, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 85% 10%,
      rgba(46, 196, 182, 0.16),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(7, 27, 43, 0.5),
      rgba(7, 27, 43, 0.86) 60%,
      rgba(7, 27, 43, 0.95)
    );
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: center;
  padding: 34px 0;
}
.hero__left {
  max-width: 700px;
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  font-size: 12px;
}
.stamp__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 18px rgba(46, 196, 182, 0.45);
}
.h1 {
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.8px;
  margin-top: 14px;
}
.h2 {
  font-size: 28px;
  letter-spacing: -0.4px;
}
.h3 {
  font-size: 18px;
  letter-spacing: -0.2px;
}
.lead {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 247, 255, 0.86);
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.trust__item {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.trust__item b {
  display: block;
  font-size: 13px;
}
.trust__item span {
  display: block;
  margin-top: 4px;
  color: var(--mut);
  font-size: 12px;
}

.hero__right {
  justify-self: end;
  max-width: 440px;
  width: 100%;
}
.card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 16px;
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.badge {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 3, 0.35);
  background: rgba(255, 183, 3, 0.1);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.in {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 27, 43, 0.18);
  color: #fff;
  outline: none;
}
.in:focus {
  border-color: rgba(46, 196, 182, 0.45);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.12);
}
.tiny {
  font-size: 12px;
  line-height: 1.5;
}
.lnk {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mut {
  color: var(--mut);
}

/* wave */
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 84px;
  background:
    radial-gradient(
      40px 40px at 10% 70%,
      rgba(255, 216, 168, 0.4),
      transparent 55%
    ),
    radial-gradient(
      50px 50px at 55% 60%,
      rgba(46, 196, 182, 0.2),
      transparent 55%
    ),
    linear-gradient(180deg, transparent, rgba(7, 27, 43, 0.95));
  mask-image:
    radial-gradient(60px 22px at 10% 50%, #000 98%, transparent 100%),
    radial-gradient(60px 22px at 30% 50%, #000 98%, transparent 100%),
    radial-gradient(60px 22px at 50% 50%, #000 98%, transparent 100%),
    radial-gradient(60px 22px at 70% 50%, #000 98%, transparent 100%),
    radial-gradient(60px 22px at 90% 50%, #000 98%, transparent 100%);
  mask-size: 20% 100%;
  mask-repeat: repeat-x;
}
section {
  padding: 0 16px;
}
/* sections */
.sec {
  padding: 54px 0;
}
.head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tile {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.tile__ic {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.26);
  margin-bottom: 10px;
  font-size: 20px;
}
.tile h3 {
  font-size: 16px;
  letter-spacing: -0.2px;
}
.tile p {
  margin-top: 8px;
}

/* split */
.split {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.split__img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.split__img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.split__text {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.split__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* gallery */
.gallery {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 12px;
}
.g {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.g img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.g:hover img {
  transform: scale(1.06);
}

/* page */
.page {
  padding: 34px 0 54px;
}
.page__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

/* about layout */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about__card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.bul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bul__it {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.bul__it span {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 196, 182, 0.14);
  border: 1px solid rgba(46, 196, 182, 0.26);
}
.bul__it b {
  font-size: 13px;
}
.bul__it small {
  display: block;
  color: var(--mut);
  margin-top: 2px;
}
.about__img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.about__img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.banner {
  margin-top: 12px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.14),
    rgba(46, 196, 182, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

/* services cards */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pill2 {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  font-size: 13px;
}
.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour {
  display: grid;
  grid-template-columns: 360px 1fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.tour__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 27, 43, 0.12);
  font-size: 12px;
  font-weight: 900;
  color: rgba(244, 247, 255, 0.92);
}

/* contact */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}
.panel {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.miniTag {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(46, 196, 182, 0.28);
  background: rgba(46, 196, 182, 0.1);
}
.lbl {
  font-size: 12px;
  font-weight: 900;
  color: rgba(244, 247, 255, 0.88);
  margin-top: 6px;
}
.note {
  margin-top: 12px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 27, 43, 0.12);
}
.panel--map {
  padding: 0;
  overflow: hidden;
}
.panel--map iframe {
  width: 100%;
  height: 340px;
  border: 0;
}
.contact__btns {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* footer */
.ftr {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 10, 16, 0.55);
  backdrop-filter: blur(12px);
}
.ftr__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 14px;
  align-items: start;
}
.ftr__logo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.ftr__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ftr__col b {
  font-size: 13px;
}
.ftr__col a {
  font-weight: 900;
  font-size: 13px;
  color: rgba(244, 247, 255, 0.9);
}
.ftr__col a:hover {
  text-decoration: underline;
}
.ftr__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ftr__mini {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(244, 247, 255, 0.55);
}

/* cookies */
.ck {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(520px, calc(100% - 32px));
  display: none;
}
.ck.is-show {
  display: block;
  animation: pop 0.25s ease;
}
.ck__box {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 27, 43, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.ck__txt {
  flex: 1;
}
.ck__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.is-open {
  display: flex;
}
.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.modal__box {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 27, 43, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__actions {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.tgl {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}
.tgl input {
  accent-color: var(--sun);
}

/* legal header & page */
.legalHdr {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 27, 43, 0.78);
  backdrop-filter: blur(14px);
}
.legalHdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.legal {
  padding: 26px 0 56px;
}
.legal__card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.legal__card ul {
  margin: 10px 0 0 18px;
  line-height: 1.7;
}
.legal__btns {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* toast */
.toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 120;
  width: min(380px, calc(100% - 32px));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 27, 43, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
}
.toast.is-show {
  opacity: 1;
  transform: translateY(0);
}
.toast b {
  font-size: 13px;
}
.toast span {
  color: var(--mut);
  font-size: 12px;
}
.toast--ok {
  border-color: rgba(46, 196, 182, 0.26);
}
.toast--err {
  border-color: rgba(255, 183, 3, 0.26);
}

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

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-on {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }
  .hero {
    min-height: auto;
  }
  .trust {
    grid-template-columns: 1fr;
  }
  .tiles {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .tour {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .ftr__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .mbtn {
    display: inline-block;
  }
  .ribbon__inner {
    flex-direction: column;
  }
  .chip {
    display: none;
  }
  h1 {
    font-size: 30px;
  }
  .hdr__inner {
    padding: 14px 16px;
  }
}
