:root {
  --gm-green: #1d6b4f;
  --gm-green-dark: #124536;
  --gm-gold: #c79b46;
  --gm-ink: #17211c;
  --gm-muted: #647067;
  --gm-soft: #f4f7f1;
}

body {
  color: var(--gm-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 78px;
}

a {
  color: var(--gm-green);
}

a:hover {
  color: var(--gm-green-dark);
}

.btn {
  border-radius: .35rem;
  font-weight: 650;
}

.btn-success {
  --bs-btn-bg: var(--gm-green);
  --bs-btn-border-color: var(--gm-green);
  --bs-btn-hover-bg: var(--gm-green-dark);
  --bs-btn-hover-border-color: var(--gm-green-dark);
}

.btn-outline-success {
  --bs-btn-color: var(--gm-green);
  --bs-btn-border-color: var(--gm-green);
  --bs-btn-hover-bg: var(--gm-green);
  --bs-btn-hover-border-color: var(--gm-green);
}

.gm-navbar {
  min-height: 78px;
  transition: box-shadow .2s ease;
}

.gm-navbar-scrolled {
  box-shadow: 0 .75rem 1.5rem rgba(23, 33, 28, .12) !important;
}

.gm-logo {
  object-fit: contain;
}

.navbar .nav-link {
  color: var(--gm-ink);
  font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--gm-green);
}

.dropdown-menu {
  border: 0;
  border-radius: .4rem;
  box-shadow: 0 1rem 2.5rem rgba(23, 33, 28, .14);
}

.gm-hero {
  background:
    linear-gradient(90deg, rgba(18, 69, 54, .92), rgba(18, 69, 54, .68) 48%, rgba(18, 69, 54, .2)),
    url("/system/img/header.jpg") center / cover no-repeat;
  color: #fff;
  margin-top: -78px;
  padding-top: 78px;
}

.gm-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 750;
  line-height: 1.02;
  max-width: 900px;
}

.gm-hero .lead {
  max-width: 680px;
}

.gm-eyebrow {
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gm-hero-card {
  background: rgba(255, 255, 255, .94);
  border-radius: .5rem;
  color: var(--gm-ink);
  margin-left: auto;
  max-width: 360px;
  padding: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .24);
}

.gm-hero-card span {
  color: var(--gm-gold);
  display: block;
  font-weight: 750;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.gm-hero-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.py-lg-6 {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

.gm-feature {
  background: var(--gm-soft);
  border: 1px solid rgba(29, 107, 79, .12);
  border-radius: .5rem;
  padding: 2rem;
}

.gm-feature-number {
  color: var(--gm-gold);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 1rem;
}

.gm-feature p,
.gm-destination p,
.gm-footer p {
  color: var(--gm-muted);
}

.gm-destination {
  border: 0;
  border-radius: .5rem;
  box-shadow: 0 .75rem 2rem rgba(23, 33, 28, .08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gm-destination:hover {
  box-shadow: 0 1rem 2.5rem rgba(23, 33, 28, .14);
  transform: translateY(-4px);
}

.gm-destination img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gm-image-panel {
  box-shadow: 0 1rem 3rem rgba(23, 33, 28, .16);
}

.gm-check-list li {
  margin-bottom: .75rem;
  padding-left: 1.75rem;
  position: relative;
}

.gm-check-list li::before {
  background: var(--gm-green);
  border-radius: 50%;
  content: "";
  height: .55rem;
  left: .25rem;
  position: absolute;
  top: .55rem;
  width: .55rem;
}

.gm-cta {
  background: var(--gm-green-dark);
  color: #fff;
}

.gm-cta p {
  color: rgba(255, 255, 255, .78);
}

.gm-footer {
  background: #f7f8f5;
}

.gm-footer h2 {
  color: var(--gm-green-dark);
  font-weight: 800;
}

.gm-footer-links li + li {
  margin-top: .45rem;
}

.gm-footer a {
  text-decoration: none;
}

.gm-footer a:hover {
  text-decoration: underline;
}

.gm-page-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-top: -78px;
  padding-top: 78px;
}

.gm-page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  font-weight: 760;
  line-height: 1.05;
}

.min-vh-50 {
  min-height: 50vh;
}

.gm-breadcrumb a {
  text-decoration: none;
}

.gm-side-box {
  background: var(--gm-soft);
  border: 1px solid rgba(29, 107, 79, .14);
  border-radius: .5rem;
  padding: 1.5rem;
}

.gm-side-box strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.gm-side-box p {
  color: var(--gm-muted);
}

.gm-filter-nav {
  gap: .6rem;
}

.gm-filter-nav .nav-link {
  border: 1px solid rgba(29, 107, 79, .2);
  border-radius: 999px;
  color: var(--gm-green-dark);
  font-weight: 700;
  padding: .55rem 1rem;
}

.gm-filter-nav .nav-link.active,
.gm-filter-nav .nav-link:hover {
  background: var(--gm-green);
  border-color: var(--gm-green);
  color: #fff;
}

.gm-listing-group {
  align-items: center;
  color: var(--gm-green-dark);
  display: flex;
  font-weight: 800;
  gap: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
}

.gm-listing-group::after {
  background: rgba(29, 107, 79, .18);
  content: "";
  flex: 1;
  height: 1px;
}

.gm-offer-card {
  border: 0;
  border-radius: .5rem;
  box-shadow: 0 .75rem 2rem rgba(23, 33, 28, .08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gm-offer-card:hover {
  box-shadow: 0 1rem 2.5rem rgba(23, 33, 28, .14);
  transform: translateY(-4px);
}

.gm-offer-image-link {
  display: block;
  position: relative;
}

.gm-offer-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gm-offer-badge {
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  color: var(--gm-green-dark);
  font-size: .78rem;
  font-weight: 800;
  left: 1rem;
  padding: .35rem .7rem;
  position: absolute;
  top: 1rem;
}

.gm-stars {
  color: var(--gm-gold);
  white-space: nowrap;
}

.gm-star-muted {
  color: #d6d9d2;
}

.gm-offer-meta {
  border-top: 1px solid rgba(23, 33, 28, .08);
  color: var(--gm-muted);
  font-size: .94rem;
  padding-top: 1rem;
}

.gm-offer-meta li + li {
  margin-top: .35rem;
}

.gm-price {
  color: var(--gm-green-dark);
  font-size: 1.15rem;
}

.gm-detail-hero {
  background: linear-gradient(180deg, #f7f8f5 0%, #fff 100%);
  margin-top: -78px;
  padding-bottom: 3rem;
  padding-top: 96px;
}

.gm-detail-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 760;
  line-height: 1.05;
}

.gm-pill {
  background: #fff;
  border: 1px solid rgba(29, 107, 79, .18);
  border-radius: 999px;
  color: var(--gm-green-dark);
  font-weight: 700;
  padding: .55rem .9rem;
}

.gm-booking-card,
.gm-summary-card,
.gm-form-panel {
  background: #fff;
  border: 1px solid rgba(29, 107, 79, .12);
  border-radius: .5rem;
  box-shadow: 0 .75rem 2rem rgba(23, 33, 28, .08);
  padding: 1.5rem;
}

.gm-booking-card strong {
  color: var(--gm-green-dark);
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin: .25rem 0 .75rem;
}

.gm-gallery-grid {
  display: grid;
  gap: .75rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(5, 1fr);
}

.gm-gallery-item {
  background: #000;
  border: 0;
  border-radius: .45rem;
  display: block;
  min-height: 180px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gm-gallery-item-main {
  grid-column: 3 / span 3;
  grid-row: 1 / span 2;
  min-height: 430px;
}

.gm-gallery-grid .gm-gallery-item:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}

.gm-gallery-grid .gm-gallery-item:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.gm-gallery-grid .gm-gallery-item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.gm-gallery-grid .gm-gallery-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.gm-gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, opacity .25s ease;
  width: 100%;
}

.gm-gallery-item:hover img {
  opacity: .88;
  transform: scale(1.035);
}

.gm-gallery-item span {
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  bottom: 1rem;
  color: var(--gm-green-dark);
  font-weight: 800;
  left: 1rem;
  padding: .55rem .9rem;
  position: absolute;
}

.gm-detail-section {
  border-bottom: 1px solid rgba(23, 33, 28, .1);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.gm-detail-section h2 {
  color: var(--gm-green-dark);
  font-size: 1.6rem;
  font-weight: 760;
  margin-bottom: 1rem;
}

.gm-rich-text {
  color: var(--gm-muted);
  font-size: 1.04rem;
}

.gm-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.gm-amenities span {
  background: var(--gm-soft);
  border: 1px solid rgba(29, 107, 79, .12);
  border-radius: 999px;
  color: var(--gm-green-dark);
  font-weight: 700;
  padding: .55rem .85rem;
}

.gm-price-table {
  background: #fff;
  border: 1px solid rgba(29, 107, 79, .12);
}

.gm-price-table th {
  background: var(--gm-green-dark);
  color: #fff;
}

.gm-map {
  border-radius: .5rem;
  height: 340px;
  overflow: hidden;
}

.gm-sticky-aside {
  position: sticky;
  top: 100px;
}

.gm-gallery-modal .modal-content {
  background: #dfe3df;
  border: 0;
  border-radius: .5rem;
  color: var(--gm-ink);
  overflow: hidden;
}

.gm-gallery-modal .modal-header {
  background: linear-gradient(180deg, #f7f8f5 0%, #dfe3df 100%);
  border-color: rgba(23, 33, 28, .12);
}

.gm-gallery-modal .btn-close {
  filter: none;
}

.gm-gallery-modal .modal-body {
  background: #cfd5cf;
  padding: 0;
  position: relative;
}

.gm-modal-image {
  display: block;
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.gm-gallery-modal-footer {
  align-items: center;
  background: linear-gradient(90deg, var(--gm-green-dark), var(--gm-green));
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.gm-gallery-modal-footer span {
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
  text-transform: uppercase;
}

.gm-gallery-modal-footer strong {
  font-size: 1rem;
}

.gm-gallery-control {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 0;
  border-radius: 50%;
  color: var(--gm-green-dark);
  display: flex;
  font-size: 2.3rem;
  font-weight: 700;
  height: 3.25rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
  width: 3.25rem;
  z-index: 2;
}

.gm-gallery-control:hover,
.gm-gallery-control:focus {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.gm-gallery-prev {
  left: 1rem;
}

.gm-gallery-next {
  right: 1rem;
}

.gm-contact-hero {
  background: linear-gradient(180deg, #f7f8f5 0%, #fff 100%);
  margin-top: -78px;
  padding-top: 96px;
}

.gm-contact-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 760;
  line-height: 1.05;
}

.gm-contact-card {
  background:
    linear-gradient(180deg, rgba(18, 69, 54, .93), rgba(18, 69, 54, .84)),
    url("/system/img/contact.jpg") center / cover no-repeat;
  border-radius: .5rem;
  color: #fff;
  min-height: 100%;
  padding: 2rem;
}

.gm-contact-card h2 {
  font-size: 1.7rem;
  font-weight: 760;
  margin-bottom: 1rem;
}

.gm-contact-card p {
  color: rgba(255, 255, 255, .82);
}

.gm-contact-list {
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  gap: .7rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.gm-contact-list a,
.gm-contact-list span {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.gm-contact-list a:hover {
  text-decoration: underline;
}

.gm-legal-hero {
  background:
    linear-gradient(90deg, rgba(13, 50, 38, .9) 0%, rgba(13, 50, 38, .66) 48%, rgba(13, 50, 38, .32) 100%),
    var(--gm-legal-hero-image) center / cover no-repeat;
  color: #fff;
  margin-top: -78px;
  padding-top: 96px;
}

.gm-legal-hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  font-weight: 760;
  line-height: 1.05;
}

.gm-legal-hero .lead {
  color: rgba(255, 255, 255, .86);
  max-width: 760px;
}

.gm-legal-content {
  background: #fff;
  border: 1px solid rgba(23, 33, 28, .1);
  border-radius: .5rem;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.gm-legal-section + .gm-legal-section {
  border-top: 1px solid rgba(23, 33, 28, .1);
  margin-top: 1.7rem;
  padding-top: 1.7rem;
}

.gm-legal-section h2,
.gm-legal-aside h2 {
  color: var(--gm-green-dark);
  font-size: 1.35rem;
  font-weight: 760;
  margin-bottom: .85rem;
}

.gm-legal-section p {
  color: rgba(23, 33, 28, .78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.gm-legal-section p:last-child {
  margin-bottom: 0;
}

.gm-legal-aside {
  background: #f7f8f5;
  border: 1px solid rgba(23, 33, 28, .1);
  border-radius: .5rem;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.gm-legal-aside p {
  color: rgba(23, 33, 28, .72);
}

.gm-legal-facts {
  display: grid;
  gap: .8rem;
  margin-top: 1.3rem;
}

.gm-legal-facts div {
  background: #fff;
  border-radius: .45rem;
  padding: .85rem 1rem;
}

.gm-legal-facts span {
  color: rgba(23, 33, 28, .55);
  display: block;
  font-size: .78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.gm-legal-facts strong {
  color: var(--gm-ink);
  display: block;
  margin-top: .2rem;
}

.gm-legal-image {
  border-radius: .5rem;
  display: block;
  height: auto;
  margin-top: 1.4rem;
  width: 100%;
}

.gm-tourism-hero {
  background-position: center;
}

.gm-story-card {
  background: #fff;
  border: 1px solid rgba(23, 33, 28, .1);
  border-radius: .5rem;
  overflow: hidden;
}

.gm-story-card > img {
  aspect-ratio: 11 / 5;
  object-fit: cover;
  width: 100%;
}

.gm-story-body {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.gm-story-body h2 {
  color: var(--gm-green-dark);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  font-weight: 760;
  margin-bottom: 1rem;
}

.gm-story-body p {
  color: rgba(23, 33, 28, .78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.gm-info-tile {
  background: var(--gm-soft);
  border: 1px solid rgba(29, 107, 79, .12);
  border-radius: .5rem;
  height: 100%;
  padding: 1.35rem;
}

.gm-info-tile span {
  color: var(--gm-gold);
  display: block;
  font-weight: 800;
  margin-bottom: .65rem;
}

.gm-info-tile h3 {
  color: var(--gm-green-dark);
  font-size: 1.15rem;
  font-weight: 760;
}

.gm-info-tile p,
.gm-section-intro {
  color: var(--gm-muted);
}

.gm-section-intro {
  max-width: 520px;
}

.gm-tourism-gallery {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gm-tourism-gallery-item {
  border: 0;
  border-radius: .5rem;
  color: #fff;
  min-height: 180px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gm-tourism-gallery-item img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform .25s ease;
  width: 100%;
}

.gm-tourism-gallery-item::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .62) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.gm-tourism-gallery-item span {
  bottom: 0;
  font-weight: 760;
  left: 0;
  padding: 1rem;
  position: absolute;
  right: 0;
  z-index: 1;
}

.gm-tourism-gallery-item:hover img,
.gm-tourism-gallery-item:focus img {
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  body {
    padding-top: 70px;
  }

  .gm-navbar {
    min-height: 70px;
  }

  .gm-hero {
    margin-top: -70px;
    padding-top: 70px;
  }

  .gm-page-hero {
    margin-top: -70px;
    padding-top: 70px;
  }

  .gm-detail-hero {
    margin-top: -70px;
    padding-top: 88px;
  }

  .gm-contact-hero {
    margin-top: -70px;
    padding-top: 88px;
  }

  .gm-legal-hero {
    margin-top: -70px;
    padding-top: 88px;
  }

  .gm-legal-aside {
    position: static;
  }

  .gm-tourism-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gm-gallery-item-main {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .gm-gallery-grid .gm-gallery-item:nth-child(2),
  .gm-gallery-grid .gm-gallery-item:nth-child(3),
  .gm-gallery-grid .gm-gallery-item:nth-child(4),
  .gm-gallery-grid .gm-gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gm-sticky-aside {
    position: static;
  }

  .gm-hero h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 575.98px) {
  .gm-hero h1 {
    font-size: 2.25rem;
  }

  .gm-hero .min-vh-100 {
    min-height: 760px !important;
  }

  .gm-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gm-gallery-item,
  .gm-gallery-item-main {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .gm-story-card > img {
    aspect-ratio: 4 / 3;
  }

  .gm-tourism-gallery {
    grid-template-columns: 1fr;
  }
}
