@charset "UTF-8";
[x-cloak] {
  display: none !important;
}

/* ============================================================
   ULISSE TRAVEL — main.scss
   Theme CSS ported from examples/style.css
   ============================================================ */
:root {
  --bg:#f4f6f8;
  --surface:#fff;
  --ink:#14223b;
  --ink2:#4a5568;
  --ink3:#8896a6;
  --border:#e2e6ec;
  --accent:#e86533;
  --accent-h:#d15525;
  --accent-l:#fff1eb;
  --gold:#d4a83a;
  --gold-l:#fff8e5;
  --navy:#14223b;
  --navy-l:#eaecf0;
  --teal:#1b8a7a;
  --teal-l:#e6f6f3;
  --ice:#c5dff0;
  --ff:"Plus Jakarta Sans",sans-serif;
  --ffd:"Playfair Display",Georgia,serif;
  --r:16px;
  --rl:22px;
  --rr:999px;
}

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

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ═══ SHARED ═══ */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.tag--light {
  color: rgba(255, 255, 255, 0.55);
}

.sec-title {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.2;
  color: var(--ink);
}

.sec-title--left {
  text-align: left;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.68rem 1.4rem;
  border-radius: var(--rr);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 101, 51, 0.25);
  color: #fff;
}

.btn-cta--white {
  background: #fff;
  color: var(--navy);
}

.btn-cta--white:hover {
  background: var(--accent-l);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR  (transparent → solid on scroll)
   ═══════════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.35s, box-shadow 0.35s;
}

.topnav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.topnav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.topnav__logo img {
  height: 40px;
  transition: height 0.3s;
}

.topnav.scrolled .topnav__logo img {
  height: 34px;
}

.topnav:not(.scrolled) .topnav__logo img {
  filter: brightness(0) invert(1);
}

.topnav__body {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.topnav__links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topnav__links > li > a {
  display: block;
  padding: 0.45rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  border-radius: var(--rr);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.topnav.scrolled .topnav__links > li > a {
  color: var(--ink);
}

.topnav__links > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.topnav.scrolled .topnav__links > li > a:hover {
  background: var(--accent-l);
  color: var(--accent);
}

.topnav__links > li > a .bi-chevron-down {
  font-size: 0.5rem;
  margin-left: 0.15rem;
  vertical-align: middle;
}

/* Dropdown */
.topnav__dd {
  position: relative;
}

.topnav__drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
  padding: 0.45rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s;
  z-index: 50;
}

.topnav__dd:hover .topnav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topnav__drop a {
  display: block;
  padding: 0.38rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: all 0.15s;
  text-decoration: none;
}

.topnav__drop a:hover {
  background: var(--accent-l);
  color: var(--accent);
}

.topnav__drop-head {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink3);
  padding: 0.45rem 0.75rem 0.15rem;
}

.topnav__drop-div {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0.5rem;
}

/* Right actions */
.topnav__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.8rem;
}

.topnav__area {
  display: none;
}

@media (min-width: 1100px) {
  .topnav__area {
    display: inline-flex;
  }
}
.topnav__tel {
  display: none;
}

@media (min-width: 1100px) {
  .topnav__tel {
    display: inline-flex;
  }
}
.topnav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--rr);
  transition: all 0.25s;
  text-decoration: none;
}

.topnav__cta:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 101, 51, 0.3);
  color: #fff;
}

.topnav__cta--wa {
  background: #25d366;
}

.topnav__cta--wa:hover {
  background: #1da851;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* Burger */
.topnav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.topnav__burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.topnav.scrolled .topnav__burger span {
  background: var(--ink);
}

.topnav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.topnav__burger.open span:nth-child(2) {
  opacity: 0;
}

.topnav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .topnav__burger {
    display: flex;
  }
  .topnav__body {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s;
    z-index: 998;
  }
  .topnav__body.open {
    transform: translateX(0);
  }
  .topnav__links {
    flex-direction: column;
    gap: 0;
  }
  .topnav__links > li > a {
    color: var(--ink);
    padding: 0.6rem 0.4rem;
  }
  .topnav__drop {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 0.8rem;
  }
  .topnav__right {
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .topnav__tel {
    display: inline-flex;
  }
  .topnav__area {
    display: inline-flex;
  }
}
/* ═══════════════════════════════════════════════════════════
   HERO  (full-bleed, centered text + search)
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slider .carousel-inner, .hero__slider .carousel-item {
  height: 100%;
}

.hero__bg {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 7s linear;
}

.carousel-item.active .hero__bg {
  transform: scale(1.05);
}

.hero__dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 34, 59, 0.65) 0%, rgba(20, 34, 59, 0.4) 45%, rgba(20, 34, 59, 0.72) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 3rem;
  color: #fff;
}

.hero__kicker {
  display: block;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero__h1 {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__p {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* dots */
.hero__dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.hero__dots button.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 26px;
  border-radius: var(--rr);
}

/* Search box (glassmorphism) */
.sbox {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--rl);
  padding: 1rem 1.1rem;
}

.sbox__tabs {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
}

.sbox__tab {
  font-weight: 700;
  font-size: 0.76rem;
  padding: 0.38rem 1rem;
  border-radius: var(--rr);
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
}

.sbox__tab.active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.sbox__tab:not(.active):hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.sbox__row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.sbox__field {
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: var(--r);
  padding: 0 0.8rem;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.sbox__field:focus-within {
  border-color: var(--accent);
}

.sbox__field i {
  color: var(--ink3);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sbox__field input, .sbox__field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff);
  font-size: 0.84rem;
  padding: 0.65rem 0;
  width: 100%;
  color: var(--ink);
}

.sbox__go {
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s;
  white-space: nowrap;
}

.sbox__go:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 101, 51, 0.3);
}

@media (max-width: 767px) {
  .sbox__row {
    flex-direction: column;
  }
  .sbox__go {
    width: 100%;
    justify-content: center;
  }
}
/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features {
  padding: 2.5rem 0;
  background: var(--surface);
}

.fcard {
  text-align: center;
  padding: 0.75rem;
}

.fcard__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  transition: transform 0.3s;
}

.fcard:hover .fcard__ico {
  transform: scale(1.1);
}

.fcard__ico--blue {
  background: var(--navy-l);
  color: var(--navy);
}

.fcard__ico--gold {
  background: var(--gold-l);
  color: var(--gold);
}

.fcard__ico--navy {
  background: var(--navy-l);
  color: var(--navy);
}

.fcard__h {
  font-family: var(--ffd);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.fcard__p {
  font-size: 0.78rem;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   DESTINATIONS
   ═══════════════════════════════════════════════════════════ */
.dest {
  padding: 5rem 0;
  background: var(--bg);
}

.dest__all {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.dest__all:hover {
  gap: 0.55rem;
}

.dcard {
  position: relative;
  display: block;
  border-radius: var(--rl);
  overflow: hidden;
  height: 280px;
  text-decoration: none;
}

.dcard--big {
  height: 280px;
}

.dcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dcard:hover img {
  transform: scale(1.06);
}

.dcard__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(20, 34, 59, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
}

.dcard__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(20, 34, 59, 0.5);
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  width: fit-content;
}

.dcard__info h3 {
  font-family: var(--ffd);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 0.15rem;
}

.dcard__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 767px) {
  .dcard, .dcard--big {
    height: 220px;
  }
}
/* ═══════════════════════════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════════════════════════ */
.offers {
  padding: 5rem 0;
  background: var(--surface);
}

.ocard {
  display: flex;
  flex-direction: column;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.ocard:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.ocard__img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.ocard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ocard:hover .ocard__img img {
  transform: scale(1.05);
}

.ocard__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.66rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--rr);
  letter-spacing: 0.03em;
}

.ocard__badge--teal {
  background: var(--teal);
}

.ocard__badge--navy {
  background: var(--navy);
}

.ocard__badge--ice {
  background: var(--ice);
  color: var(--navy);
}

.ocard__body {
  padding: 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ocard__body h4 {
  font-family: var(--ffd);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.ocard__body p {
  font-size: 0.82rem;
  color: var(--ink2);
  margin-bottom: 0.5rem;
  line-height: 1.55;
  flex: 1;
}

.ocard__link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
  text-decoration: none;
}

.ocard:hover .ocard__link {
  gap: 0.5rem;
}

/* Horizontal variant */
.ocard--horizontal {
  flex-direction: row;
}

.ocard--horizontal .ocard__img {
  width: 45%;
  height: auto;
  min-height: 200px;
  flex-shrink: 0;
}

.ocard--horizontal .ocard__body {
  justify-content: center;
}

@media (max-width: 767px) {
  .ocard--horizontal {
    flex-direction: column;
  }
  .ocard--horizontal .ocard__img {
    width: 100%;
    height: 180px;
  }
}
/* Gold card */
.ocard--gold {
  background: linear-gradient(135deg, #ffe9a0, #ffd54f);
  border: none;
  justify-content: center;
  min-height: 220px;
}

.ocard__body--center {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ocard__emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.4rem;
}

.ocard--gold h4 {
  color: var(--navy);
}

.ocard--gold p {
  color: rgba(20, 34, 59, 0.65);
}

.ocard--gold .ocard__link {
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews {
  padding: 5rem 0;
  background: var(--bg);
}

.rcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.6rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.rcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.rcard__stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}

.rcard__txt {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.rcard__who {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rcard__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.rcard__av--b {
  background: var(--teal);
}

.rcard__av--c {
  background: var(--navy);
}

.rcard__who strong {
  font-size: 0.86rem;
}

.rcard__who small {
  color: var(--ink3);
  font-size: 0.72rem;
}

.rcard__check {
  margin-left: auto;
  color: var(--teal);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   HEYLIGHT
   ═══════════════════════════════════════════════════════════ */
.hey {
  padding: 4rem 0;
  background: var(--surface);
}

.hey__box {
  background: var(--navy);
  border-radius: var(--rl);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hey__box::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232, 101, 51, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hey__title {
  font-family: var(--ffd);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.18;
  margin-bottom: 0.7rem;
  position: relative;
}

.hey__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 450px;
  line-height: 1.65;
  position: relative;
  margin-bottom: 1.2rem;
}

.hey__img {
  max-width: 420px;
  border-radius: var(--r);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.news {
  padding: 5rem 0;
  background: var(--bg);
}

.news__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 3rem;
  overflow: hidden;
}

.news__img {
  border-radius: var(--rl);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.4s;
  max-width: 360px;
  margin: 0 auto;
}

.news__box:hover .news__img {
  transform: rotate(0) scale(1.02);
}

.news__title {
  font-family: var(--ffd);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.news__text {
  color: var(--ink2);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  max-width: 420px;
  line-height: 1.6;
}

.news__form {
  display: flex;
  gap: 0.45rem;
  max-width: 430px;
}

.news__form input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: var(--rr);
  padding: 0.65rem 1.1rem;
  font-family: var(--ff);
  font-size: 0.86rem;
  background: var(--bg);
  transition: border-color 0.2s;
}

.news__form input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 101, 51, 0.08);
}

.news__form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--rr);
  padding: 0.65rem 1.3rem;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.25s;
}

.news__form button:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 101, 51, 0.25);
}

.news__priv {
  color: var(--ink3);
  font-size: 0.7rem;
  margin-top: 0.55rem;
  display: block;
}

.news__priv a {
  color: var(--accent);
}

@media (max-width: 767px) {
  .news__form {
    flex-direction: column;
  }
}
/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.ft {
  background: #0e1724;
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 0;
  font-size: 0.84rem;
}

.ft__logo {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(1.3);
}

.ft__about {
  max-width: 270px;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.ft__social {
  display: flex;
  gap: 0.4rem;
}

.ft__social a {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
}

.ft__social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.ft__h {
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

.ft__ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft__ul li {
  margin-bottom: 0.4rem;
}

.ft__ul a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.ft__ul a:hover {
  color: var(--accent);
}

.ft__contact li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.ft__contact i {
  color: var(--accent);
  margin-top: 0.15rem;
}

.ft__btm {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.3rem 0;
  margin-top: 3rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
}

.ft__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.6rem;
  margin-top: 0.2rem;
}

.ft__legal a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
}

.ft__legal a:hover {
  color: var(--accent);
}

.ft__pay {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ft__pay img {
  height: 24px;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.ft__pay img:hover {
  opacity: 0.7;
}

.ft__sig {
  background: rgba(0, 0, 0, 0.15);
  padding: 0.7rem 0;
}

.ft__sig-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.ft__sig-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

.ft__sig-link strong {
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 5px 18px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.anim.vis {
  opacity: 1;
  transform: translateY(0);
}

.date-picker-wrap {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
}
.date-picker-wrap > div {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.occupancy-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.occupancy-room {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.occupancy-room:last-of-type {
  border-bottom: none;
}

#results-grid {
  transition: opacity 0.25s ease;
}

[data-results-filter]:checked ~ label,
[data-results-filter]:checked + label {
  color: #007BFF;
  font-weight: 600;
}

#sort-select {
  font-size: 0.85rem;
  border-color: #dee2e6;
  color: #0d2d4e;
}
#sort-select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}

#load-more-wrap {
  padding-top: 2rem;
}

.result-card-list__img-col {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .result-card-list__img-col {
    width: 100%;
  }
}
.result-card-list__img-wrap {
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
  overflow: hidden;
}
@media (max-width: 575px) {
  .result-card-list__img-wrap {
    height: 180px;
  }
}
.result-card-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card-list__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
}
.result-card-list__summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-vc-date-weekend] [data-vc-date-btn] {
  color: var(--accent) !important;
}

[data-vc-date]:not([data-vc-date-weekend]) [data-vc-date-btn] {
  color: #1f628e !important;
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.page-search {
  background: var(--bg);
}

/* SEARCH HEADER */
.search-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0 1.8rem;
}

.breadcrumb-nav .breadcrumb {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  background: none;
  padding: 0;
}

.breadcrumb-nav .breadcrumb-item a {
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--ink);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: var(--ink3);
  content: "›";
}

.search-header__title {
  font-family: var(--ffd);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 0.25rem;
}

.search-header__title em {
  font-style: italic;
  color: var(--accent);
}

.search-header__meta {
  font-size: 0.86rem;
  color: var(--ink2);
  margin-bottom: 1.2rem;
}

/* RE-SEARCH STICKY BAR */
.research-sticky {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.research {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 0.55rem;
}

.research__field {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border-radius: var(--r);
  padding: 0 0.7rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.research__field:focus-within {
  border-color: var(--accent);
}

.research__field i {
  color: var(--ink3);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.research__field input, .research__field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  width: 100%;
  color: var(--ink);
}

.research__btn {
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 0.55rem 1.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.research__btn:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 767px) {
  .research {
    flex-direction: column;
  }
  .research__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* MAIN */
.search-main {
  padding: 2rem 0 4rem;
}

/* SIDEBAR FILTERS */
.filters__mobile-toggle {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.7rem;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  margin-bottom: 0.8rem;
  color: var(--ink);
  transition: all 0.2s;
}

.filters__mobile-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 991px) {
  .filters__body {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 1.2rem;
  }
  .filters__body.open {
    display: block;
  }
}
@media (min-width: 992px) {
  .filters__body {
    display: block !important;
  }
}
.fblock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.1rem;
  margin-bottom: 0.8rem;
}

.fblock__title {
  font-family: var(--ffd);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.fblock__search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 0.7rem;
  transition: border-color 0.2s;
}

.fblock__search:focus-within {
  border-color: var(--accent);
}

.fblock__search i {
  color: var(--ink3);
  font-size: 0.82rem;
}

.fblock__search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  width: 100%;
}

.fblock__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fcheck {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: background 0.15s;
  font-size: 0.82rem;
  color: var(--ink);
  margin: 0;
}

.fcheck:hover {
  background: var(--accent-l);
}

.fcheck input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--border);
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--surface);
}

.fcheck input[type=checkbox]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 4L5.5 10L2.5 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.fcheck span:first-of-type {
  flex: 1;
}

.fcheck__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink3);
  background: var(--bg);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
}

.fcheck__star {
  display: flex;
  gap: 0.1rem;
  color: var(--gold);
  font-size: 0.72rem;
}

.fcheck--hidden {
  display: none !important;
}

.fblock__more {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.76rem;
  cursor: pointer;
  padding: 0.4rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}

.fblock__more:hover {
  gap: 0.45rem;
}

.fblock__range {
  margin-top: 0.3rem;
}

.fblock__range .form-range {
  width: 100%;
}

.fblock__range .form-range::-webkit-slider-thumb {
  background: var(--accent);
}

.fblock__range .form-range::-moz-range-thumb {
  background: var(--accent);
}

.fblock__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink2);
  margin-top: 0.2rem;
}

.fblock__range-labels span:last-child {
  font-weight: 700;
  color: var(--accent);
}

.filters__apply {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 0.7rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: background 0.2s;
}

.filters__apply:hover {
  background: var(--accent-h);
}

/* SORTING BAR */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 0.75rem 1.1rem;
  margin-bottom: 1rem;
}

.sort-bar__count {
  font-size: 0.86rem;
  color: var(--ink2);
}

.sort-bar__count strong {
  color: var(--ink);
}

.sort-bar__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sort-bar__label {
  font-size: 0.78rem;
  color: var(--ink3);
  white-space: nowrap;
}

.sort-bar__select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-family: var(--ff);
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--bg);
  cursor: pointer;
}

.sort-bar__view {
  display: flex;
  gap: 0.2rem;
}

.sort-bar__view-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.9rem;
}

.sort-bar__view-btn.active, .sort-bar__view-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* RESULT CARDS (horizontal list view) */
.results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rcard-h-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rcard-h {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rcard-h:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.rcard-h-wrap:has(.rcard-h__panel.open) .rcard-h {
  border-radius: var(--rl) var(--rl) 0 0;
  transform: none;
}

.rcard-h__img {
  position: relative;
  width: 300px;
  min-height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.rcard-h__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.rcard-h__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s;
}

.rcard-h__slide.active {
  opacity: 1;
  position: relative;
}

.rcard-h__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.rcard-h__arrow:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.rcard-h__arrow--l {
  left: 0.5rem;
}

.rcard-h__arrow--r {
  right: 0.5rem;
}

.rcard-h__actions {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  z-index: 4;
  display: flex;
  gap: 0.3rem;
}

.rcard-h__act {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(20, 34, 59, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}

.rcard-h__act:hover, .rcard-h__act.active {
  background: var(--accent);
}

.rcard-h__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 4;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.66rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--rr);
  letter-spacing: 0.03em;
}

.rcard-h__badge--hot {
  background: var(--teal);
}

.rcard-h__fav {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--ink3);
  cursor: pointer;
  transition: all 0.2s;
}

.rcard-h__fav:hover, .rcard-h__fav.active {
  color: #e53e3e;
  background: #fff;
}

.rcard-h__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.4rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.rcard-h__top {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}

.rcard-h__rec {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #fef3e2, #fde8d0);
  color: #c27522;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: var(--rr);
  white-space: nowrap;
  border: 1px solid rgba(212, 168, 58, 0.2);
}

.rcard-h__rec i {
  font-size: 0.72rem;
}

.rcard-h__stars {
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.1rem;
}

.rcard-h__name {
  font-family: var(--ffd);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.rcard-h__loc {
  font-size: 0.78rem;
  color: var(--ink3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.rcard-h__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.7rem 0;
}

.rcard-h__tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--rr);
  background: var(--accent-l);
  color: var(--accent);
}

.rcard-h__tag--feat {
  background: var(--bg);
  color: var(--ink2);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.rcard-h__promo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-l);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  margin: 0.5rem 0 0;
}

.rcard-h__promo i {
  font-size: 0.7rem;
}

.rcard-h__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.8rem;
  margin-top: 0.6rem;
}

.rcard-h__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--rr);
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.rcard-h:hover .rcard-h__btn {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 101, 51, 0.3);
}

.rcard-h__panel {
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--rl) var(--rl);
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.4rem;
}

.rcard-h__panel.open {
  max-height: 600px;
  padding: 1.2rem 1.4rem;
}

.rcard-h__panel-title {
  font-family: var(--ffd);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.rcard-h__panel-title i {
  color: var(--accent);
  font-size: 0.9rem;
}

.rcard-h__panel-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0;
}

.rcard-h__gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.rcard-h__gallery img {
  flex: 0 0 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.rcard-h__gallery img:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .rcard-h {
    flex-direction: column;
  }
  .rcard-h__img {
    width: 100%;
    height: 200px;
    min-height: auto;
  }
  .rcard-h__gallery img {
    flex: 0 0 120px;
    height: 85px;
  }
}
/* INFINITE SCROLL */
.inf-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 0;
  color: var(--ink3);
  font-size: 0.86rem;
}

.inf-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 0;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 600;
}