@media (min-width: 1024px) {
  .container { padding: 0 2.5rem; }
}

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  transition: background .5s var(--ease-out), border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.nav.is-scrolled {
  background: rgba(250,247,241,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(227,221,208,0.6);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  color: var(--fg);
}
.nav__logo { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: -0.01em; }
.nav__links { 
  display: none; gap: 2.25rem; 
}
.nav__links a {
  font-size: 0.875rem; color: rgba(42,38,32,0.8);
  position: relative; transition: color .3s;
}

#nav:not(.is-scrolled) .nav__links> a, #nav:not(.is-scrolled) .nav__logo {
  color: var(--secondary);
}

#nav:not(.is-scrolled) .nav__cta {
  color: var(--secondary);
  border-color: var(--secondary);
}

#nav:not(.is-scrolled) .nav__burger span {
  background: var(--secondary);
}

.nav__mobile a {
  color: var(--fg);
}

.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  height: 1px; width: 0; background: var(--accent); transition: width .3s var(--ease-out);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: none;
  border: 1px solid rgba(42,38,32,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  transition: background .3s, color .3s, border-color .3s;
}
.nav__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); border: none; }

.nav__burger { display: flex; flex-direction: column; gap: 6px; padding: .5rem; }
.nav__burger span { display: block; height: 1px; width: 24px; background: var(--fg); transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.idiomas {
  align-items:center; 
  gap:8px;
  font-size:14px;
}
.idiomas a {
  text-decoration:none;
  color:rgb(42 38 32 / 80%);
}

.idiomas a.active {
  color:var(--dark);
  font-weight: 600;
}

#nav:not(.is-scrolled) .idiomas-landscape a {
  color: var(--secondary);
}

#nav:not(.is-scrolled) .idiomas-landscape span {
  color: var(--secondary);
}

/* .idiomas a:hover {
  color:var(--accent);
} */

.idiomas span {
  color:var(--muted);
  font-weight: 200;
}

.idiomas-mobile {
  display: flex;
}

.nav__mobile {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.5rem; border-top: 1px solid rgba(227,221,208,0.6);
  background: rgba(250,247,241,0.95); backdrop-filter: blur(12px);
   position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.nav__mobile.is-open { 
  display: flex; 
  animation: fadeDown .3s var(--ease-out); 
}
.nav__mobile a { font-family: var(--font-serif); font-size: 1.6rem; }


 .idiomas-landscape {
  display: none;
}

@media (min-width: 1100px) {
  .nav__inner { padding: 1.25rem 2.5rem; }
  .nav__links, .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .idiomas-landscape { display: flex; }
}

/* HERO */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 640px;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 2.4s var(--ease-out) both;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6));
}
.hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 6rem;
  color: #fff;
}
.hero__eyebrow { 
  color: rgba(255,255,255,0.8); 
  opacity: 0; 
  animation: fadeUp 1s .5s var(--ease-out) forwards; 
}

.hero__eyebrow-wrap {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

.hero__eyebrow:not(:last-child)::after {
    content: "·";
    margin: 0 0.5rem;
}

.hero__title {
  margin-top: 1.5rem; max-width: 60rem;
  font-size: clamp(2.75rem, 7vw, 6.5rem); line-height: 1.02;
  opacity: 0; animation: fadeUp 1.1s .7s var(--ease-out) forwards;
}
.hero__title em { font-weight: 300; }
.hero__lead {
  margin-top: 2rem; max-width: 36rem;
  font-size: 1.05rem; line-height: 1.7; font-weight: 300;
  color: rgba(255,255,255,0.88);
  opacity: 0; animation: fadeUp 1s 1.1s var(--ease-out) forwards;
    font-family: var(--font-sans);
}
.hero__actions {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 1s 1.3s var(--ease-out) forwards;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  opacity: 0; animation: fadeUp 1s 1.8s var(--ease-out) forwards;
}
.hero__scroll-line {
  display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.6);
  animation: scrollBounce 2s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero__content { padding-bottom: 8rem; }
  .hero__lead { font-size: 1.15rem; }
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease-out);
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: min(100%, 420px);
  padding: 0 1rem;
}
.hero__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.35rem;
  transition: background .3s, transform .3s, border-color .3s;
}
.hero__nav:hover,
.hero__nav:focus {
  background: rgba(255,255,255,0.22);
  transform: scale(1.05);
}
.hero__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: transform .3s, background .3s;
}
.hero__dot.is-active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12);
}
.hero__dot:focus {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 2px;
}

/* ZONA */
.zona__head {
  display: grid; gap: 2.5rem;
  margin-bottom: 4rem;
}
.zona__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}

.section-button {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.unete-btn {
  max-width: 250px;
}
@media (min-width: 700px)  { .zona__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
@media (min-width: 1024px) {
  .zona__head { grid-template-columns: 5fr 1fr 6fr; align-items: end; }
  .zona__head .reveal:first-child { grid-column: 1; }
  .zona__head .section-lead { grid-column: 3; }
  .zona__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .zona__head { margin-bottom: 6rem; }
}

/* EXPERIENCIAS */
.experiencias { background: rgba(236,229,212,0.4); }
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 260px;
}
.bento__item { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--dark); }
.bento__item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.9; transition: transform 1.4s var(--ease-out), opacity .8s;
}
.bento__item:hover img { transform: scale(1.05); opacity: 1; }
.bento__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2));
  transition: background .4s;
}
.bento__item:hover .bento__shade {
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.25));
}
.bento__body {
  position: relative; z-index: 2; height: 100%;
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.bento__body .eyebrow { color: rgba(255,255,255,0.7); }
.bento__body h3 { font-size: 1.875rem; }
.bento__body p {
  margin-top: 0.5rem; max-width: 22rem; font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s, transform .5s;
}
.bento__item:hover .bento__body p { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; grid-auto-rows: 320px; }
  .bento__item--xl { grid-column: span 2; grid-row: span 2; }
  .bento__item--wide { grid-column: span 2; }
  .bento__body { padding: 2rem; }
  .bento__body h3 { font-size: 2.25rem; }
}

/* MAPA */

#map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.leaflet-control-zoom {
    border: none !important;
}

.leaflet-control-zoom a {
    /* border-radius: 5px !important; */
    /* margin-bottom: 6px; */
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.leaflet-container {
  font-family: Inter, system-ui, sans-serif;
}

.commerce-popup .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
}

.commerce-popup .leaflet-popup-content {
  margin: 0;
  width: min(92vw, 320px);
  max-width: 320px;
}

.commerce-popup .leaflet-popup-tip {
  background: var(--bg);
  box-shadow: none;
}

.commerce-popup .leaflet-popup-close-button {
  top: 0.75rem;
  right: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff !important;
  background: #f4f4f5;
  border: 2px solid rgba(17, 24, 39, 0.16);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.22);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.commerce-popup .leaflet-popup-close-button:hover {
  background: #f4f4f5;
  color: #000000 !important;
  transform: scale(1.05);
}

.commerce-popup article {
  background: var(--bg);
  color: var(--dark);
}

.commerce-popup article > div:first-child {
  position: relative;
}

.commerce-popup article > div:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

.commerce-popup img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.commerce-popup article > div:first-child > span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commerce-popup .commerce-card__body {
  padding: 1rem 1rem 1.1rem;
}

.commerce-popup .commerce-card__body .commerce-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--muted);;
  font-weight: 700;
}

.commerce-popup .commerce-card__body p,
.commerce-popup .commerce-card__body span {
  color: var(--muted);
}

.commerce-popup .commerce-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}


@media (max-width: 640px) {
  .commerce-popup .leaflet-popup-content {
    width: min(92vw, 280px);
    max-width: 280px;
  }

  .commerce-popup img {
    height: 160px;
  }

  .commerce-popup .commerce-card__body {
    padding: 0.9rem 0.9rem 1rem;
  }

  .commerce-popup .commerce-card__body .commerce-card__title {
    font-size: 1rem;
  }
}

#map > div.leaflet-control-container > div.leaflet-bottom.leaflet-right > div {
  display:none !important;
}
.marker-icon {
  font-size: 20px;
  background: white;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-svg {
  width: 30px;
  height: 30px;
  padding: 3px;
  background: #f4a7a0;
  border: 3px solid #fff;

  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.marker-svg svg {
  width: 20px;
  height: 20px;

  fill: white;

  transform: rotate(45deg);
}

.marker-svg.supermarket {
  background: green;
}

.marker-svg.restaurant {
  background: #f4a7a0;
}

.marker-svg.beach-club {
  background: #ffd166;
}

.marker-svg.bar {
  background: #8b4513;
}

.marker-svg.shopping {
  background: #ff6b6b;
}

.marker-svg.dive {
  background: rgb(71, 71, 225);
}

.marker-svg.rent-car {
  background: rgb(71, 225, 71);
}

.marker-svg.pub {
  background: #d4a017;
}

.marker-svg.apartamentos {
  background: rgb(239, 96, 239);
}


.mapa__grid { display: grid; gap: 3rem; }
.mapa__list { 
  margin-top: 2.5rem;
  max-height: 480px; 
  overflow-y: scroll; 
}
/* Ancho de la barra */

.mapa__list::-webkit-scrollbar {
    width: 10px;
}
/* Fondo */
.mapa__list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Barra */
.mapa__list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
/* Hover */
.mapa__list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.mapa__list li { 
  border-top: 1px solid var(--border);
  padding-right: 1rem;  
}
.mapa__list li:last-child { border-bottom: 1px solid var(--border); }
.mapa__list button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 1rem 0; text-align: left;
  color: var(--muted); transition: color .3s;
}
.mapa__list button:hover, .mapa__list button.is-active { color: var(--fg); }
.mapa__list .name { 
  font-family: var(--font-serif); 
  font-size: 1.25rem; 
}

.mapa__canvas {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3;
  background: #d6e6f0; border-radius: var(--radius); overflow: hidden;
}

@media (max-width: 640px) {
  .mapa__canvas {
    min-height: 500px;
    aspect-ratio: auto;
  }
}
.mapa__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapa__points { position: absolute; inset: 0; }
.mapa__point {
  position: absolute; transform: translate(-50%, -50%);
}
.mapa__point .dot {
  display: block; height: 10px; width: 10px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 4px rgba(42,111,163,0.15);
  transition: all .5s var(--ease-out);
}
.mapa__point:hover .dot { background: var(--accent); }
.mapa__point.is-active .dot {
  height: 16px; width: 16px;
  background: var(--accent); box-shadow: 0 0 0 8px rgba(196,122,74,0.2);
}
.mapa__point .label {
  position: absolute; left: 50%; top: 100%;
  transform: translate(-50%, 12px);
  background: var(--dark); color: var(--bg);
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.75rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mapa__point.is-active .label { opacity: 1; animation: fadeUp .3s var(--ease-out); }

@media (min-width: 1024px) {
  .mapa__grid { grid-template-columns: 4fr 8fr; gap: 3rem; }
}

/* EVENTOS */
.eventos { background: var(--dark); color: var(--bg); }
.eventos__head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 3.5rem;
}
.eventos__list {
  border-top: 1px solid rgba(250,247,241,0.15);
  border-bottom: 1px solid rgba(250,247,241,0.15);
}
.eventos__item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1.5rem; padding: 1.75rem 0;
  border-bottom: 1px solid rgba(250,247,241,0.15);
  transition: transform .4s var(--ease-out);
}
.eventos__item:last-child { border-bottom: none; }
.eventos__item:hover { transform: translateX(8px); }
.eventos__date { display: flex; align-items: baseline; gap: 0.5rem; min-width: 5rem; }
.eventos__date .day { font-family: var(--font-serif); font-size: 2.5rem; }
.eventos__date .month { color: rgba(250,247,241,0.6); }
.eventos__title { font-family: var(--font-serif); font-size: 1.35rem; transition: color .3s; }
.eventos__item:hover .eventos__title { color: var(--accent); }
.eventos__place { margin-top: .25rem; font-size: .85rem; color: rgba(250,247,241,0.6); }
.eventos__tag { color: rgba(250,247,241,0.6); }
@media (min-width: 1024px) {
  .eventos__date .day { font-size: 3rem; }
  .eventos__title { font-size: 1.5rem; }
}

/* GALERIA */
.galeria {
  background: var(--dark); color: var(--bg);
}

.gallery-cards {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  height: 450px;
  width:100%;
}

.gallery-card {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease;
  cursor: pointer;
}

.gallery-card:hover {
  flex: 4;
}

.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  z-index: 2;

  display: flex; 
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

/* OCULTOS POR DEFECTO */
.card-content p, .card-content .btn-card {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}


.card-content p,
.card-content .btn-card {
  opacity: 0;
  transition: 0.4s;
   overflow: hidden;
  transition: 0.4s ease;
}

.gallery-card:hover .card-content p,
.gallery-card:hover .card-content .btn-card {
  opacity: 1;
  max-height: 200px;
}

.card-content p {
  margin: 1rem 0;
  line-height: 1.5;
}

.btn-card {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 500px) {
  .gallery-cards {
    flex-direction: column;
  }

  .gallery-card {
    height: 300px;
  }

  .gallery-card:hover {
    height: 400px;
  }
}

.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}
.masonry__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--muted-bg);
  display: block; width: 100%; height: 100%;
  transition: transform .4s var(--ease-out);
}
.masonry__item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.masonry__item:hover { transform: scale(0.98); }
.masonry__item:hover img { transform: scale(1.1); }
.masonry__item.tall { grid-row: span 2; }
@media (min-width: 768px) {
  .masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 1rem; }
}

/* ASOCIADOS */
.asociados { background: rgba(236,229,212,0.4); }
.asociados__grid { display: grid; gap: 3rem; align-items: center; }
.asociados__img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.asociados__img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.asociados__benefits { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.asociados__benefits li { display: flex; align-items: flex-start; gap: 1rem; color: rgba(42,38,32,0.85); }
.asociados__benefits .dash { margin-top: 0.65rem; display: block; height: 1px; width: 2rem; background: var(--accent); flex-shrink: 0; }
.asociados__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
@media (min-width: 1024px) {
  .asociados__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* FOOTER */
.footer { background: var(--dark); color: var(--bg); padding: 6rem 0 2.5rem; }
.footer__grid {
  display: grid; gap: 3rem; padding-bottom: 5rem;
}
.footer__brand p { margin-top: 1.5rem; max-width: 28rem; color: rgba(250,247,241,0.7); font-weight: 300; line-height: 1.7; }
.footer__logo { font-family: var(--font-serif); font-size: 1.875rem; }
.footer__form {
  margin-top: 2.5rem; display: flex; align-items: center;
  max-width: 28rem; border-bottom: 1px solid rgba(250,247,241,0.3);
  transition: border-color .3s;
}
.footer__form:focus-within { border-color: var(--accent); }
.footer__form input {
  flex: 1; background: transparent; border: none; color: inherit;
  padding: 0.75rem 0; font-size: 0.875rem; font-family: inherit;
}
.footer__form input::placeholder { color: rgba(250,247,241,0.4); }
.footer__form input:focus { outline: none; }
.footer__form button { padding: 0.75rem 0.5rem; font-size: 0.7rem; transition: color .3s; }
.footer__form button:hover { color: var(--accent); }
.footer__head { color: rgba(250,247,241,0.5); }
.footer__grid ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer__grid ul a { color: rgba(250,247,241,0.8); transition: color .3s; }
.footer__grid ul a:hover { color: var(--accent); }
.footer__social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; width: 36px; border-radius: 50%;
  border: 1px solid rgba(250,247,241,0.2);
  font-size: 0.7rem;
  transition: background .3s, border-color .3s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,241,0.15);
  font-size: 0.75rem; color: rgba(250,247,241,0.5);
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 5fr 2fr 2fr 3fr; }
}


/* loader */

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
 
  z-index: 9999;
}

#loader.active{
   display: flex;
  justify-content: center;
  align-items: center;
}


/* From Uiverse.io by SouravBandyopadhyay */ 
.hourglassBackground {
  position: relative;
  background-color: rgb(71, 60, 60);
  height: 130px;
  width: 130px;
  border-radius: 50%;
  margin: 30px auto;
}

.hourglassContainer {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 50px;
  height: 70px;
  -webkit-animation: hourglassRotate 2s ease-in 0s infinite;
  animation: hourglassRotate 2s ease-in 0s infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hourglassContainer div,
.hourglassContainer div:before,
.hourglassContainer div:after {
  transform-style: preserve-3d;
}

@-webkit-keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

@keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

.hourglassCapTop {
  top: 0;
}

.hourglassCapTop:before {
  top: -25px;
}

.hourglassCapTop:after {
  top: -20px;
}

.hourglassCapBottom {
  bottom: 0;
}

.hourglassCapBottom:before {
  bottom: -25px;
}

.hourglassCapBottom:after {
  bottom: -20px;
}

.hourglassGlassTop {
  transform: rotateX(90deg);
  position: absolute;
  top: -16px;
  left: 3px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #999999;
}

.hourglassGlass {
  perspective: 100px;
  position: absolute;
  top: 32px;
  left: 20px;
  width: 10px;
  height: 6px;
  background-color: #999999;
  opacity: 0.5;
}

.hourglassGlass:before,
.hourglassGlass:after {
  content: '';
  display: block;
  position: absolute;
  background-color: #999999;
  left: -17px;
  width: 44px;
  height: 28px;
}

.hourglassGlass:before {
  top: -27px;
  border-radius: 0 0 25px 25px;
}

.hourglassGlass:after {
  bottom: -27px;
  border-radius: 25px 25px 0 0;
}

.hourglassCurves:before,
.hourglassCurves:after {
  content: '';
  display: block;
  position: absolute;
  top: 32px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #333;
  animation: hideCurves 2s ease-in 0s infinite;
}

.hourglassCurves:before {
  left: 15px;
}

.hourglassCurves:after {
  left: 29px;
}

@-webkit-keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.hourglassSandStream:before {
  content: '';
  display: block;
  position: absolute;
  left: 24px;
  width: 3px;
  background-color: white;
  -webkit-animation: sandStream1 2s ease-in 0s infinite;
  animation: sandStream1 2s ease-in 0s infinite;
}

.hourglassSandStream:after {
  content: '';
  display: block;
  position: absolute;
  top: 36px;
  left: 19px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  animation: sandStream2 2s ease-in 0s infinite;
}

@-webkit-keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@-webkit-keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hourglassSand:before,
.hourglassSand:after {
  content: '';
  display: block;
  position: absolute;
  left: 6px;
  background-color: white;
  perspective: 500px;
}

.hourglassSand:before {
  top: 8px;
  width: 39px;
  border-radius: 3px 3px 30px 30px;
  animation: sandFillup 2s ease-in 0s infinite;
}

.hourglassSand:after {
  border-radius: 30px 30px 3px 3px;
  animation: sandDeplete 2s ease-in 0s infinite;
}

@-webkit-keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@-webkit-keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}

@keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}
