:root {
  --green-dark: #21643c;
  --green: #2e7b49;
  --green-light: #33a45f;
  --gold: #d4af37;
  --gold-light: #f1d27a;
  --text: #252525;
  --muted: #5e5e5e;
  --bg: #f3f0f1;
  --card: #ffffff;
  --border: #e4dfe0;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.14);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-wrap {
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: #0c0c0c;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.76) 0%,
    rgba(0, 0, 0, 0.52) 42%,
    rgba(0, 0, 0, 0.24) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 850px;
  width: 100%;
  padding: 56px 0;
}

.hero__copy {
  max-width: 730px;
  margin-left: 120px;
  color: #fff;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__copy h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.05rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.hero__copy h1 span {
  color: var(--gold-light);
}

.hero__copy h1 .bi{font-size: 2.8rem;}

.hero__subtitle {
  margin: 0 0 8px;
  font-size: clamp(1.08rem, 2vw, 1.6rem);
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero__text {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.45;
  color: #ffffff;
  max-width: 640px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
  font-size: 0.92rem;
  color: #f2f2f2;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__trust i {
  color: var(--gold-light);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  filter: brightness(1.02);
}

.btn--whatsapp {
  color: #fff;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--large {
  min-width: min(100%, 620px);
  justify-content: flex-start;
  padding: 16px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn--large span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn--large small {
  margin-top: 4px;
  font-weight: 500;
  opacity: 0.92;
}

.btn--secondary {
  min-width: min(100%, 620px);
  padding-inline: 20px;
}

.btn--search {
  width: 100%;
  min-height: 52px;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(180deg, #2f7e4d 0%, #21643c 100%);
}

.btn--maps {
  flex: 0 0 auto;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(180deg, #2f7e4d 0%, #21643c 100%);
}

.icon-circle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.4rem;
}

/* CONTENT */
.content {
  margin-top: 56px;
  padding-bottom: 56px;
}

.search-panel,
.info-panel,
.intro-card,
.faq-card,
.hotel-showcase {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-panel {
  padding: 34px 32px 24px;
  margin-bottom: 24px;
}

.search-panel h2,
.intro-card h2,
.faq-card h2,
.section-head h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.search-panel h2 span {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  font-size: 0.9em;
  color: #4b4b4b;
}

/* BOOKING */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.booking-card__head {
  background: linear-gradient(180deg, #2f7e4d 0%, #23663c 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 15px 16px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.booking-form {
  padding: 18px;
}

.field {
  display: block;
  margin-bottom: 12px;
}

.field__label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2b2b2b;
}

.field__control {
  position: relative;
  display: block;
}

.field__control input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d6d3d4;
  border-radius: 12px;
  padding: 0 46px 0 14px;
  font: inherit;
  color: #303030;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field__control input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 123, 73, 0.12);
}

.field__control i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-dark);
  font-size: 1.1rem;
  pointer-events: none;
}

.center-box {
  text-align: center;
  margin-top: 26px;
}

/* INTRO */
.intro-section {
  margin: 24px 0 20px;
}

.intro-card {
  padding: 26px 28px;
}

.intro-card p {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.68;
  color: #363636;
}

/* HIGHLIGHTS */
.highlights {
  margin: 24px 0 20px;
}

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

.highlight-box {
  min-height: 164px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.highlight-box i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--green-dark);
  background: rgba(46, 123, 73, 0.10);
}

.highlight-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 0.95rem;
  line-height: 1.3;
}

.highlight-box span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

/* INFO PANEL */
.info-panel {
  padding: 26px 28px 24px;
}

.info-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.info-panel h3 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.pin {
  color: #e84949;
}

.lead {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.info-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 0.96rem;
  color: #303030;
}

.benefits {
  margin: 8px 0 0;
  padding-left: 24px;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.5;
}

.benefits li + li {
  margin-top: 6px;
}

.benefits li::marker {
  color: #4e9567;
}

.info-map {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.info-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

/* HOTEL SHOWCASE */
.hotel-showcase {
  margin-top: 26px;
  padding: 26px 28px 28px;
}

.section-head {
  text-align: center;
  margin-bottom: 22px;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hotel-card {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.hotel-card__title {
  background: linear-gradient(180deg, #2f7e4d 0%, #23663c 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 13px 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hotel-card__media {
  position: relative;
  overflow: hidden;
}

.hotel-card__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.02) 100%
  );
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hotel-card__overlay span {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 14px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

.hotel-card:hover .hotel-card__media img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

.hotel-card:hover .hotel-card__overlay {
  opacity: 1;
}

.hotel-card__body {
  padding: 16px;
}

.hotel-card__desc {
  margin: 0 0 10px;
  color: #444;
  line-height: 1.5;
  font-size: 0.92rem;
}

.hotel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hotel-card__tags span {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(46, 123, 73, 0.08);
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 700;
}

.hotel-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46, 123, 73, 0.08);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hotel-card:hover .hotel-card__cta {
  background: rgba(46, 123, 73, 0.14);
  transform: translateY(-1px);
}

.hotel-card__cta i {
  font-size: 0.9rem;
}

/* FAQ */
.faq-section {
  margin-top: 24px;
}

.faq-card {
  padding: 26px 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  font-weight: 700;
  line-height: 1.45;
  font-size: 0.97rem;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: #494949;
  line-height: 1.58;
  font-size: 0.94rem;
}

/* FOOTER */
.footer {
  background: #1b1b1b;
  color: #eaeaea;
  padding: 50px 0 20px;
  margin-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer__col {
  min-width: 0;
}

.footer__col h4 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.footer__col p,
.footer__col li,
.footer__col a {
  font-size: 0.82rem;
}

.footer__col p {
  line-height: 1.5;
  color: #cfcfcf;
}

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

.footer__col li {
  margin-bottom: 8px;
}

.footer__col li i,
.footer__col a i {
  margin-right: 6px;
}

.footer__col a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__whatsapp {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* ANIMATIONS */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* RESPONSIVE */
@media (max-width: 1200px) {

.hero__copy h1 .bi{font-size: 2rem;}

}


@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__col {
    padding-right: 10px;
  }
}

@media (max-width: 860px) {
  .content {
    margin-top: 44px;
    padding-bottom: 48px;
  }

  .hero {
    min-height: 500px;
  }

  .hero__content {
    min-height: 500px;
    padding: 32px 0;
  }

  .hero__copy {
    margin-left: 28px;
    max-width: 580px;
  }

  .hero__copy h1 {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
  }

.hero__copy h1 .bi{font-size: 2rem;}


.hero__trust {
  font-size: 0.82rem;
}


  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__text {
    font-size: 0.98rem;
    max-width: 500px;
  }

  .search-panel,
  .info-panel,
  .intro-card,
  .faq-card,
  .hotel-showcase {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .info-panel__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn--maps {
    width: 100%;
  }

  .highlight-box {
    min-height: auto;
  }

  .hotel-card__media img {
    height: 215px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .content {
    margin-top: 36px;
    padding-bottom: 42px;
  }

  .hero {
    min-height: 430px;
  }

  .hero__content {
    min-height: 430px;
    align-items: center;
    padding: 28px 0;
  }

  .hero__copy {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero__eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
    padding: 7px 12px;
  }

  .hero__copy h1 {
    font-size: 1.85rem;
    line-height: 1.08;
    margin-bottom: 10px;
  }

.hero__copy h1 .bi{font-size: 1.8rem;}


.hero__trust {
  font-size: 0.72rem;
}

  .hero__subtitle {
    font-size: 0.98rem;
    margin-bottom: 6px;
  }

  .hero__text {
    font-size: 0.92rem;
    line-height: 1.32;
    margin-bottom: 16px;
    max-width: 285px;
  }

  .hero__trust {
    margin-top: 12px;
    flex-direction: column;
    gap: 6px;
    font-size: 0.82rem;
  }

  .search-panel,
  .info-panel,
  .intro-card,
  .faq-card,
  .hotel-showcase {
    padding-left: 14px;
    padding-right: 14px;
  }

  .search-panel h2,
  .intro-card h2,
  .faq-card h2,
  .section-head h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }

  .search-panel h2 span {
    margin-top: 4px;
    font-size: 0.88em;
  }

  .booking-card__head {
    font-size: 1rem;
    padding: 11px 12px;
  }

  .booking-form {
    padding: 14px;
  }

  .field__label {
    font-size: 0.88rem;
  }

  .field__control input {
    min-height: 50px;
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .btn--large {
    width: auto;
    min-width: 0;
    max-width: 285px;
    padding: 10px 14px;
    gap: 10px;
    justify-content: flex-start;
  }

  .btn--secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 12px 14px;
  }

  .btn--large span:last-child {
    align-items: flex-start;
    text-align: left;
  }

  .icon-circle {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 1rem;
  }

  .btn--large strong {
    font-size: 0.85rem;
    line-height: 1.15;
  }

  .btn--large small {
    font-size: 0.72rem;
    margin-top: 2px;
  }

  .intro-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    text-align: left;
  }

  .highlights__grid {
    gap: 12px;
  }

  .highlight-box {
    padding: 14px 12px;
  }

  .highlight-box i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .highlight-box strong {
    font-size: 0.92rem;
  }

  .highlight-box span {
    font-size: 0.85rem;
  }

  .lead {
    font-size: 0.96rem;
  }

  .info-address {
    font-size: 0.92rem;
  }

  .benefits {
    font-size: 0.93rem;
    line-height: 1.45;
    padding-left: 20px;
  }

  .info-map iframe {
    height: 220px;
  }

  .section-head p {
    font-size: 0.92rem;
  }

  .hotel-card__media img {
    height: 190px;
  }

  .hotel-card__body {
    padding: 14px;
  }

  .hotel-card__desc {
    font-size: 0.89rem;
    margin-bottom: 9px;
  }

  .hotel-card__tags {
    gap: 6px;
  }

  .hotel-card__tags span {
    font-size: 0.74rem;
    padding: 5px 8px;
  }

  .hotel-card__cta {
    font-size: 0.86rem;
  }

  .faq-item summary {
    font-size: 0.93rem;
    padding: 15px;
  }

  .faq-item p {
    font-size: 0.9rem;
    padding: 0 15px 15px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 40px 0 20px;
  }

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

  .footer__col h4 {
    font-size: 1rem;
  }

  .footer__bottom {
    font-size: 0.8rem;
  }
}


a.btn.btn--whatsapp:hover,
button.btn.btn--search:hover,
a.btn.btn--maps:hover {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: #fff;
}




























/* =========================
   HOTEL DETAIL PAGE
   ========================= */

.hero--hotel .hero__copy {
  max-width: 760px;
}

.hero__actions {
  margin-top: 6px;
}

.hotel-detail-intro {
  margin: 24px 0 20px;
}

.hotel-gallery {
  margin: 24px 0 20px;
}

.hotel-gallery__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.hotel-gallery__main,
.hotel-gallery__side img {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hotel-gallery__main img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.hotel-gallery__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hotel-gallery__side img {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.hotel-features {
  margin: 24px 0 20px;
}

.hotel-services {
  margin: 24px 0 20px;
}

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

.service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-chip i {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.service-chip span {
  font-size: 0.95rem;
  font-weight: 600;
}

.hotel-cta {
  margin-top: 24px;
}

.hotel-cta__box {
  background: linear-gradient(180deg, rgba(33, 100, 60, 0.96) 0%, rgba(26, 82, 49, 0.98) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.hotel-cta__box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: var(--gold-light);
}

.hotel-cta__box p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.hotel-cta__button {
  min-width: min(100%, 420px);
}

@media (max-width: 860px) {
  .hotel-gallery__grid,
  .hotel-services__grid {
    grid-template-columns: 1fr;
  }

  .hotel-gallery__main img {
    min-height: 320px;
  }

  .hotel-gallery__side {
    grid-template-rows: auto;
  }

  .hotel-gallery__side img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .hotel-gallery__main img {
    min-height: 250px;
  }

  .hotel-gallery__side img {
    height: 190px;
  }

  .service-chip {
    padding: 14px;
  }

  .service-chip span {
    font-size: 0.9rem;
  }

  .hotel-cta__box {
    padding: 26px 18px;
  }

  .hotel-cta__box p {
    font-size: 0.94rem;
  }
}


/* =========================
   HOTEL BOOKING BOX
   ========================= */

.hotel-booking {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.hotel-booking__box {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  padding: 24px;
  backdrop-filter: blur(6px);
}

.hotel-booking__head {
  text-align: center;
  margin-bottom: 18px;
}

.hotel-booking__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.15;
}

.hotel-booking__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hotel-booking__form {
  display: block;
}

.hotel-booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 14px;
}

.hotel-booking__grid .field {
  margin-bottom: 0;
}

.hotel-booking__grid select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d6d3d4;
  border-radius: 12px;
  padding: 0 46px 0 14px;
  font: inherit;
  color: #303030;
  background: #fff;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-booking__grid select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 123, 73, 0.12);
}

.hotel-booking__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.hotel-booking__submit {
  min-width: min(100%, 420px);
  min-height: 54px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(180deg, #2f7e4d 0%, #21643c 100%);
}

.hotel-booking__submit:hover {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: #fff;
}

@media (max-width: 860px) {
  .hotel-booking {
    margin-top: 24px;
  }

  .hotel-booking__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hotel-booking__box {
    padding: 16px;
    border-radius: 16px;
  }

  .hotel-booking__head h2 {
    font-size: 1.3rem;
  }

  .hotel-booking__head p {
    font-size: 0.92rem;
  }

  .hotel-booking__submit {
    width: 100%;
    min-width: 0;
    font-size: 0.95rem;
  }
}
















/* =========================
   APARTMENT SECTION
   ========================= */

.apartment-section {
  margin-top: 24px;
}

.apartment-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.apartment-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apartment-card__eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.apartment-card__content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
}

.apartment-card__text {
  margin: 0 0 16px;
  color: #404040;
  line-height: 1.65;
  font-size: 0.98rem;
}

.apartment-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.apartment-card__tags span {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(46, 123, 73, 0.08);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.apartment-card__button {
  width: fit-content;
}

.apartment-card__gallery {
  display: flex;
  align-items: center;
}

.apartment-slider {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.apartment-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.apartment-slider__image {
  display: none;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.apartment-slider__image.is-active {
  display: block;
}

.apartment-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
}

.apartment-slider__nav--prev {
  left: 12px;
}

.apartment-slider__nav--next {
  right: 12px;
}

.apartment-slider__nav:hover {
  background: rgba(0, 0, 0, 0.62);
}

@media (max-width: 860px) {
  .apartment-card {
    grid-template-columns: 1fr;
  }

  .apartment-card__button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .apartment-card {
    padding: 16px;
  }

  .apartment-slider__image {
    height: 220px;
  }

  .apartment-card__content h3 {
    font-size: 1.35rem;
  }

  .apartment-card__text {
    font-size: 0.93rem;
    line-height: 1.58;
  }
}












/* =========================
   TOP NAVIGATION
   ========================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.site-nav__brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav__menu a:hover {
  color: var(--gold-light);
}

.site-nav__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* spazio per compensare il menu fisso */
.page-wrap {
  padding-top: 76px;
}

/* tablet/mobile */
@media (max-width: 860px) {
  .site-nav__toggle {
    display: block;
  }

  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 16px;
    background: rgba(12, 12, 12, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__menu a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__menu a:last-child {
    border-bottom: 0;
  }

  .site-nav__menu.is-open {
    display: flex;
  }

  .site-nav__lang {
    min-width: 54px;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .site-nav__inner {
    min-height: 68px;
  }

  .site-nav__brand {
    font-size: 0.96rem;
  }

  .page-wrap {
    padding-top: 68px;
  }
}

.site-nav__menu a.is-active {
  color: var(--gold-light);
  position: relative;
}

.site-nav__menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  border-radius: 999px;
}

.site-nav__menu a.is-active.site-nav__lang::after {
  display: none;
}











/* =========================
   CONTACT PAGE
   ========================= */

.hero--small {
  min-height: 420px;
}

.hero--small .hero__content {
  min-height: 420px;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.contact-hero__booking {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-guide {
  margin: 24px 0 20px;
}

.contact-hotels {
  margin: 24px 0 20px;
}

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

.contact-hotel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-hotel-card__head {
  background: linear-gradient(180deg, #2f7e4d 0%, #23663c 100%);
  color: var(--gold-light);
  padding: 18px;
  text-align: center;
}

.contact-hotel-card__head h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.contact-hotel-card__head p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-hotel-card__body {
  padding: 20px;
}

.contact-hotel-card__body p {
  margin: 0 0 18px;
  color: #444;
  line-height: 1.6;
}

.contact-hotel-card__actions {
  display: grid;
  gap: 10px;
}

.contact-hotel-card__booking {
  background: rgba(46, 123, 73, 0.08);
  color: var(--green-dark);
  border: 1px solid rgba(46, 123, 73, 0.12);
}

.contact-hotel-card__booking:hover {
  background: rgba(46, 123, 73, 0.14);
  color: var(--green-dark);
}

.contact-methods {
  margin: 24px 0 20px;
}

.contact-map-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 18px;
}

.contact-map-point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.contact-map-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.contact-map-point span {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 860px) {
  .contact-hotels__grid,
  .contact-map-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero--small {
    min-height: 340px;
  }

  .hero--small .hero__content {
    min-height: 340px;
  }

  .contact-hero__actions {
    flex-direction: column;
  }

  .contact-hotel-card__head h3 {
    font-size: 1.2rem;
  }

  .contact-hotel-card__body {
    padding: 16px;
  }
}




/* PICKADATE IN MODALE CENTRATA */
#picker-outlet {
  position: relative;
  z-index: 99999;
}

#picker-outlet .picker {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

#picker-outlet .picker__holder {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: auto;
}

#picker-outlet .picker__frame {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

#picker-outlet .picker__wrap {
  width: auto !important;
  max-width: 100% !important;
}


#picker-outlet .picker__box {
  width: min(560px, calc(100vw - 32px)) !important;
  max-width: 100% !important;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}


@media (max-width: 860px) {
  #picker-outlet .picker__box {
    width: min(520px, calc(100vw - 32px)) !important;
  }
}

@media (max-width: 640px) {
  #picker-outlet .picker__holder {
    padding: 12px !important;
  }

  #picker-outlet .picker__box {
    width: calc(100vw - 24px) !important;
    border-radius: 12px;
  }
}