:root {
  --ccr-green: #484848;
  --ccr-green-2: #484848;
  --ccr-leaf: #777777;
  --ccr-gold: #d5aa55;
  --ccr-gold-2: #d5aa55;
  --ccr-ink: #222222;
  --ccr-muted: #777777;
  --ccr-cream: #ffffff;
  --ccr-paper: #ffffff;
  --ccr-line: rgba(72, 72, 72, 0.14);
  --ccr-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ccr-ink);
  font-family: "Times New Roman", Times, serif;
  background: #ffffff;
}

.d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

h1,
h2,
h3,
h4,
.navbar-brand,
.section-kicker {
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
}

a {
  color: inherit;
}

.topbar {
  background: var(--ccr-green);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--ccr-line);
  backdrop-filter: blur(16px);
}

.navbar-brand img {
  width: 178px;
  height: auto;
  padding: 9px 12px;
  background: var(--ccr-green);
  border-radius: 4px;
  box-shadow: none;
}

.navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.brand-text {
  line-height: 1;
}

.brand-title {
  display: block;
  color: var(--ccr-green);
  font-size: 1.18rem;
  font-weight: 600;
}

.brand-subtitle {
  color: var(--ccr-muted);
  font-family: "DM Sans", "Open Sans", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  color: var(--ccr-ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ccr-gold);
}

.gv-header {
  height: 111px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 38px;
  background: #484848;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.gv-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.gv-header > * {
  position: relative;
  z-index: 1;
}

.gv-logo {
  display: flex;
  align-items: center;
  flex: 0 0 205px;
}

.gv-logo img {
  display: block;
  width: 202px;
  height: auto;
}

.gv-contact {
  display: flex;
  align-items: center;
  gap: 37px;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 1px 1px 1px #000;
  white-space: nowrap;
}

.gv-contact a:not(.gv-location),
.gv-contact span {
  color: #fff;
  font: inherit;
  text-decoration: none;
}

.gv-contact a:not(.gv-location):hover {
  color: #fff;
  text-decoration: underline;
}

.gv-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  background: #d5b76a;
  border: 1px solid #000;
  color: #fff;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  text-shadow: none;
}

.gv-location:hover {
  color: #fff;
}

.gv-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.gv-red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #dd3535;
  border-radius: 7px;
  background: #e31313;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

button.gv-red-btn {
  cursor: pointer;
}

.gv-red-btn:hover,
.gv-red-btn:focus {
  background: #0438f2;
  border-color: #d8bd00;
  color: #fff;
}

.gv-menu-toggle {
  width: 45px;
  height: 40px;
  margin-left: 48px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
}

.gv-menu-toggle span {
  display: block;
  width: 38px;
  height: 5px;
  background: #fff;
  border-radius: 2px;
}

.gv-menu-shade {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gv-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1070;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  padding: 33px 0 40px;
  background: #1d1d1d;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.35);
}

.gv-menu-close {
  position: absolute;
  top: 20px;
  right: 36px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 45px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.gv-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 92px;
}

.gv-menu-list a {
  display: block;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  padding: 13px 34px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 1px 1px 1px #000;
}

.gv-menu-list a:hover,
.gv-menu-list a:focus {
  background: #d71920;
  color: #fff;
}

body.gv-menu-open {
  overflow: hidden;
}

body.gv-menu-open .gv-menu-shade {
  opacity: 1;
  visibility: visible;
}

body.gv-menu-open .gv-menu {
  transform: translateX(0);
}

.safety-modal-shade {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.safety-modal {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1090;
  width: 800px;
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 8px);
  overflow: auto;
  background: #fff;
  color: #222;
  border: 1px solid #555;
  border-radius: 4px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  font-family: "Times New Roman", Times, serif;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.safety-modal-title {
  position: relative;
  min-height: 57px;
  border-bottom: 1px solid #777;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 70px;
}

.safety-modal-title h2 {
  margin: 0;
  color: #898989;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.safety-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 50px;
  border: 0;
  background: #e48ba5;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 50px;
  text-align: center;
}

.safety-modal-body {
  padding: 39px 44px 40px;
  font-size: 17px;
  line-height: 1.42;
}

.safety-modal-body p {
  margin: 0 0 4px;
}

.safety-modal-body ul {
  margin: 19px 0 8px 50px;
  padding-left: 0;
  list-style-type: square;
}

.safety-modal-body li {
  margin: 0 0 4px;
  padding-left: 3px;
}

.safety-regards {
  margin-top: 14px !important;
  text-align: right;
  font-size: 18px;
  line-height: 1.35;
}

body.safety-modal-open {
  overflow: hidden;
}

body.safety-modal-open .safety-modal-shade,
body.safety-modal-open .safety-modal {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1399px) {
  .gv-header {
    gap: 28px;
    padding: 0 28px;
  }

  .gv-logo {
    flex-basis: 185px;
  }

  .gv-logo img {
    width: 182px;
  }

  .gv-contact {
    gap: 27px;
  }

  .gv-red-btn {
    padding: 0 14px;
  }

  .gv-menu-toggle {
    margin-left: 26px;
  }
}

@media (max-width: 1199px) {
  .gv-header {
    height: auto;
    min-height: 96px;
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 12px 24px;
  }

  .gv-logo {
    flex-basis: 170px;
  }

  .gv-logo img {
    width: 168px;
  }

  .gv-contact {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 28px;
  }

  .gv-actions {
    margin-left: auto;
  }

  .gv-menu-toggle {
    margin-left: 18px;
  }
}

@media (max-width: 767px) {
  .gv-header {
    min-height: 112px;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
  }

  .gv-logo {
    flex-basis: 140px;
  }

  .gv-logo img {
    width: 138px;
  }

  .gv-contact {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 17px;
    font-size: 13px;
    line-height: 1.15;
  }

  .gv-location {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .gv-actions {
    gap: 5px;
  }

  .gv-red-btn {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 10px;
  }

  .gv-menu-toggle {
    width: 36px;
    height: 34px;
    margin-left: 7px;
    gap: 4px;
  }

  .gv-menu-toggle span {
    width: 31px;
    height: 4px;
  }

  .gv-menu {
    width: 320px;
  }
}

@media (max-width: 480px) {
  .gv-header {
    justify-content: space-between;
  }

  .gv-logo {
    flex-basis: 128px;
  }

  .gv-logo img {
    width: 126px;
  }

  .gv-actions {
    width: 100%;
    order: 2;
    justify-content: flex-start;
    margin-left: 0;
  }

  .gv-contact {
    order: 3;
  }

  .gv-menu-toggle {
    margin-left: auto;
  }
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.82rem 1.25rem;
}

.btn-gold {
  background: #d5aa55;
  color: #fff;
  border: 1px solid #d5aa55;
  box-shadow: none;
}

.btn-gold:hover {
  background: #0438f2;
  border-color: #d8bd00;
  color: #fff;
}

.btn-outline-light,
.btn-outline-green {
  border-width: 1px;
}

.btn-outline-green {
  color: #484848;
  border-color: rgba(72, 72, 72, 0.28);
  background: transparent;
}

.btn-outline-green:hover {
  color: #fff;
  background: #0438f2;
  border-color: #d8bd00;
}

.hero {
  min-height: 68vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.home-hero {
  min-height: calc(100vh - 111px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.home-hero-bg,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-bg {
  background-image: url("../images/cover-page.jpg");
  background-position: center center;
  background-size: cover;
  animation: heroZoomIn 5.5s ease-out both;
}

.home-hero-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 4px 24px 0;
  color: #fff;
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
}

.hero.home-hero .home-hero-content h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  opacity: 0;
  animation: heroPixelIn 1.1s steps(14, end) 0.55s forwards;
}

.hero.home-hero .home-hero-content p {
  display: inline-block;
  max-width: none;
  margin: 24px auto 0;
  overflow: hidden;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.25;
  white-space: nowrap;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  width: 0;
  opacity: 0;
  animation: heroTypeIn 2.6s steps(70, end) 1.35s forwards;
}

@keyframes heroZoomIn {
  from {
    transform: scale(1.13);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroPixelIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(24px) scale(0.98);
    clip-path: inset(0 100% 0 0);
  }
  55% {
    opacity: 1;
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroTypeIn {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.gv-header + .gv-menu-shade + .gv-menu + .hero {
  min-height: calc(100vh - 111px);
}

.gv-welcome-section {
  background: #fff;
  padding: 137px 0 94px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}

.gv-welcome-inner {
  width: min(1220px, calc(100% - 120px));
  margin: 0 auto;
}

.gv-welcome-section h2 {
  margin: 0 0 27px;
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: 37px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.gv-welcome-section p {
  margin: 0;
  color: #222;
  font-size: 22px;
  font-weight: 300;
  line-height: 35px;
}

.home-page .container,
.home-page .gv-welcome-inner,
.home-page .gv-explore-inner,
.home-page .gv-testimonials-inner,
.home-page .gv-footer-inner {
  max-width: 1220px;
}

.home-page .gv-welcome-inner,
.home-page .gv-explore-inner,
.home-page .gv-testimonials-inner,
.home-page .gv-footer-inner {
  width: min(1220px, calc(100% - 120px));
}

.gv-explore-section {
  background: #f4f6f8;
  padding: 68px 0 74px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

.gv-explore-inner {
  width: min(1190px, calc(100% - 80px));
  margin: 0 auto;
}

.gv-explore-section h2 {
  margin: 0;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
}

.gv-explore-line {
  width: 100px;
  height: 2px;
  margin: 31px auto 30px;
  background: #1c56ff;
}

.gv-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 65px;
}

.gv-explore-card img {
  display: block;
  width: 100%;
  height: 284px;
  object-fit: cover;
  border-radius: 3px;
}

.gv-explore-card h3 {
  margin: 22px 0 15px;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.gv-explore-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 114px;
  height: 38px;
  padding: 0 18px;
  border-radius: 5px;
  background: #d5aa55;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.gv-explore-card a:hover,
.gv-explore-card a:focus {
  background: #0438f2;
  color: #fff;
}

.gv-weekend-section {
  background: #fff;
  padding: 118px 0 78px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

.gv-weekend-inner {
  width: min(1220px, calc(100% - 120px));
  margin: 0 auto;
}

.gv-weekend-section h2 {
  margin: 0;
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
}

.gv-weekend-line {
  width: 114px;
  height: 3px;
  margin: 34px auto 34px;
  background: #1c56ff;
}

.gv-weekend-subtitle {
  margin: 0 0 40px;
  color: #000;
  font-size: 24px;
  line-height: 1.25;
}

.gv-weekend-content {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 42px;
  align-items: start;
}

.gv-weekend-copy {
  padding-top: 5px;
}

.gv-weekend-copy p {
  margin: 0 0 23px;
  color: #777;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.gv-weekend-copy p:last-child {
  margin-bottom: 0;
  font-style: italic;
  font-weight: 700;
}

.gv-weekend-image img {
  display: block;
  width: 100%;
  height: auto;
}

.gv-weekend-offer img {
  max-width: 466px;
  margin: 0 auto;
}

.gv-testimonials-section {
  background: #f4f6f8;
  padding: 100px 0 79px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

.gv-testimonials-inner {
  width: min(1220px, calc(100% - 120px));
  margin: 0 auto;
}

.gv-testimonials-section h2 {
  margin: 0 0 40px;
  color: #444;
  font-family: "Times New Roman", Times, serif;
  font-size: 50px !important;
  font-weight: 600;
  line-height: 1.1;
}

.gv-testimonial-carousel {
  margin-top: 0;
  padding-bottom: 25px;
}

.gv-testimonial-item {
  min-height: 386px;
  padding: 30px 80px;
  background-color: transparent;
  border: 0;
}

.gv-testimonial-avatar {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.gv-testimonial-text {
  max-width: 1300px;
  margin: 10px auto 0;
  padding-bottom: 20px;
  color: #777;
  font-size: 19px !important;
  font-weight: 400;
  line-height: 27px;
}

.gv-testimonial-item h3 {
  display: block;
  margin: 0;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 29px;
}

.gv-testimonial-role {
  display: block;
  margin: 0;
  color: #bbb;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
}

.gv-testimonial-indicators {
  position: absolute;
  width: 100%;
  bottom: -25px;
  left: 0;
  right: 0;
  height: 10px;
  padding: 0;
  margin: 0;
  gap: 7px;
  list-style: none;
  text-align: center;
  line-height: 1;
  z-index: 3;
}

.gv-testimonial-indicators [data-bs-target] {
  width: 13px;
  height: 13px;
  margin: 0;
  border: 2px solid #c8c8c8;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
}

.gv-testimonial-indicators .active {
  background: #c8c8c8;
}

.gv-home-gallery-section {
  width: 100%;
  padding: 80px 0;
  background: #fff;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

.gv-home-gallery-section h2 {
  margin: 0;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}

.gv-gallery-line {
  width: 100px;
  height: 2px;
  margin: 42px auto 45px;
  background: #1c56ff;
}

.gv-gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.gv-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gv-gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gv-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.gv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.74);
}

.gv-lightbox.is-open {
  display: flex;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gv-lightbox-figure {
  position: relative;
  width: auto;
  max-width: calc(100vw - 260px);
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
}

.gv-lightbox-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 84px);
  object-fit: contain;
  border: 0;
  background: transparent;
}

.gv-lightbox-figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.gv-lightbox-close {
  position: absolute;
  top: calc(50% - 287px);
  left: calc(50% + 352px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  background: #bd1948;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 43px;
  font-weight: 300;
  line-height: 42px;
}

.gv-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 112px;
  height: 139px;
  margin-top: -69px;
  border: 0;
  background: rgba(189, 25, 72, 0.86);
}

.gv-lightbox-prev {
  left: 0;
}

.gv-lightbox-next {
  right: 0;
}

.gv-lightbox-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border-top: 6px solid #999;
  border-left: 6px solid #999;
  filter: drop-shadow(1px 1px 0 #000);
}

.gv-lightbox-prev::before {
  left: 38px;
  transform: rotate(-45deg);
}

.gv-lightbox-next::before {
  right: 38px;
  transform: rotate(135deg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero.home-hero::before {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 1.05;
  font-weight: 800;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.hero-panel {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ccr-ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--ccr-shadow);
}

.page-hero {
  min-height: 46vh;
}

.page-hero h1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
}

.page-hero p,
.breadcrumb-lite {
  font-family: "Times New Roman", Times, serif;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: #f8f9fa;
}

.section-dark {
  background: #484848;
  color: #fff;
}

.section-kicker {
  color: #d5aa55;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 400;
}

.section-title {
  color: #111;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.18;
}

.section-dark .section-title {
  color: #fff;
}

.lead-soft {
  color: #777;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.image-tile {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ccr-shadow);
}

.feature-card,
.room-card,
.booking-card,
.contact-card {
  background: var(--ccr-paper);
  border: 1px solid var(--ccr-line);
  border-radius: 3px;
  box-shadow: none;
  overflow: hidden;
}

.feature-card img,
.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.feature-card .card-body,
.room-card .card-body {
  padding: 1.35rem;
}

.feature-card h3,
.room-card h3 {
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--ccr-muted);
}

.meta-list li {
  display: flex;
  gap: 0.7rem;
  padding: 0.35rem 0;
}

.meta-list i {
  color: var(--ccr-gold);
}

.stat-strip {
  background: #484848;
  color: #fff;
  border-radius: 3px;
  padding: 1.4rem;
}

.stat-number {
  color: var(--ccr-gold-2);
  font-size: 2rem;
  font-weight: 900;
}

.conference-table {
  overflow: hidden;
  border: 1px solid var(--ccr-line);
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}

.conference-table th {
  color: #fff;
  background: #484848;
  font-weight: 600;
}

.conference-table td,
.conference-table th {
  padding: 1rem;
  vertical-align: middle;
}

.conference-room-card {
  background: #fff;
  border: 1px solid var(--ccr-line);
  border-radius: 3px;
  box-shadow: none;
  overflow: hidden;
}

.conference-room-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.conference-room-card .room-info {
  padding: 1.25rem;
}

.conference-room-card h3 {
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
}

.capacity-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.capacity-pills span {
  display: block;
  padding: 0.75rem;
  border: 1px solid rgba(72, 72, 72, 0.12);
  border-radius: 3px;
  background: #f8f9fa;
  color: var(--ccr-muted);
  font-size: 0.92rem;
}

.capacity-pills strong {
  display: block;
  color: #484848;
  font-size: 1.05rem;
}

.amenity-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ccr-muted);
  line-height: 1.8;
}

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

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid .tall {
  grid-row: span 2;
  height: 516px;
}

.booking-steps {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ccr-muted);
  font-weight: 800;
}

.booking-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.18);
  color: var(--ccr-green);
}

.booking-step.active span,
.booking-step.done span {
  background: var(--ccr-gold);
  color: #1d1709;
}

.booking-pane {
  display: none;
}

.booking-pane.active {
  display: block;
}

.form-control,
.form-select {
  border-radius: 8px;
  border-color: rgba(72, 72, 72, 0.22);
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ccr-gold);
  box-shadow: 0 0 0 0.22rem rgba(201, 162, 74, 0.16);
}

.footer {
  background: #0f2c1f;
  color: rgba(255, 255, 255, 0.82);
  padding: 4.5rem 0 1.4rem;
}

.footer h4,
.footer h5 {
  color: #fff;
  font-weight: 800;
}

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

.footer a:hover {
  color: var(--ccr-gold-2);
}

.gv-footer {
  background: #fff;
  color: #000;
  font-family: "Times New Roman", Times, serif;
}

.gv-footer-main {
  background: #f8f9fa;
  padding: 60px 0 40px;
}

.gv-footer-inner {
  width: min(1220px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 75px;
}

.gv-footer h3 {
  margin: 0 0 22px;
  color: #484848;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gv-footer-about p {
  margin: 0 0 14px;
  color: rgb(119, 119, 119);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
}

.gv-footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  margin-top: 1px;
  padding: 0 23px;
  border-radius: 6px;
  background: #d71920;
  border: 1px solid #d71920;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.gv-footer-contact:hover {
  background: #0438f2;
  border-color: #d8bd00;
  color: #fff;
}

.gv-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 45px;
}

.gv-footer-links a {
  display: block;
  margin-bottom: 17px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.gv-footer-links a:hover {
  color: #000;
}

.gv-footer-bottom {
  min-height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5;
  color: #000;
  text-align: center;
}

.gv-footer-bottom p {
  margin: 0;
  color: #484848;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.go-top {
  position: fixed;
  right: 26px;
  bottom: 25px;
  z-index: 1050;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: #b8babd;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  opacity: 0.95;
}

.go-top:hover,
.go-top:focus {
  background: #aeb0b3;
  color: #fff;
}

.breadcrumb-lite {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.breadcrumb-lite a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 991px) {
  .gv-welcome-section {
    padding: 86px 0 70px;
  }

  .gv-welcome-inner {
    width: min(100% - 56px, 760px);
  }

  .gv-welcome-section h2 {
    font-size: 31px;
  }

  .gv-welcome-section p {
    font-size: 20px;
    line-height: 32px;
  }

  .gv-explore-section {
    padding: 58px 0 64px;
  }

  .gv-explore-inner {
    width: min(100% - 56px, 760px);
  }

  .gv-explore-section h2 {
    font-size: 36px;
  }

  .gv-explore-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .gv-explore-card img {
    height: 245px;
  }

  .gv-weekend-section {
    padding: 76px 0 64px;
  }

  .gv-weekend-inner {
    width: min(100% - 56px, 760px);
  }

  .gv-weekend-section h2 {
    font-size: 36px;
  }

  .gv-weekend-subtitle {
    margin-bottom: 42px;
    font-size: 22px;
  }

  .gv-weekend-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gv-testimonials-section {
    padding: 74px 0 62px;
  }

  .gv-testimonials-inner {
    width: min(100% - 56px, 760px);
  }

  .gv-testimonials-section h2 {
    font-size: 46px;
  }

  .gv-testimonial-carousel {
    margin-top: 58px;
  }

  .gv-testimonial-item {
    min-height: 365px;
  }

  .gv-testimonial-text {
    font-size: 22px;
    line-height: 1.48;
  }

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

  .gv-lightbox-figure {
    max-width: calc(100vw - 140px);
  }

  .gv-lightbox-close {
    top: 50px;
    right: 32px;
    left: auto;
  }

  .gv-lightbox-arrow {
    width: 70px;
    height: 104px;
    margin-top: -52px;
  }

  .gv-lightbox-prev::before {
    left: 25px;
  }

  .gv-lightbox-next::before {
    right: 25px;
  }

  .gv-footer-main {
    padding: 56px 0 64px;
  }

  .gv-footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gv-footer-links {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .gv-footer-about p {
    font-size: 18px;
  }

  .hero {
    min-height: 62vh;
  }

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

@media (max-width: 575px) {
  .gv-welcome-section {
    padding: 62px 0 52px;
  }

  .gv-welcome-inner {
    width: min(100% - 28px, 420px);
  }

  .gv-welcome-section h2 {
    font-size: 24px;
  }

  .gv-welcome-section p {
    font-size: 18px;
    line-height: 29px;
  }

  .gv-explore-section {
    padding: 46px 0 52px;
  }

  .gv-explore-inner {
    width: min(100% - 28px, 420px);
  }

  .gv-explore-section h2 {
    font-size: 30px;
  }

  .gv-explore-line {
    margin: 22px auto 28px;
  }

  .gv-explore-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .gv-explore-card img {
    height: 230px;
  }

  .gv-weekend-section {
    padding: 56px 0 48px;
  }

  .gv-weekend-inner {
    width: min(100% - 28px, 420px);
  }

  .gv-weekend-section h2 {
    font-size: 30px;
  }

  .gv-weekend-line {
    margin: 24px auto 26px;
  }

  .gv-weekend-subtitle {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .gv-weekend-copy p {
    font-size: 17px;
    line-height: 1.7;
  }

  .gv-testimonials-section {
    padding: 58px 0 50px;
  }

  .gv-testimonials-inner {
    width: min(100% - 28px, 420px);
  }

  .gv-testimonials-section h2 {
    font-size: 36px;
  }

  .gv-testimonial-carousel {
    margin-top: 42px;
  }

  .gv-testimonial-item {
    min-height: 430px;
  }

  .gv-testimonial-avatar {
    width: 76px;
    height: 76px;
  }

  .gv-testimonial-text {
    font-size: 19px;
    line-height: 1.45;
  }

  .gv-testimonial-item h3 {
    font-size: 23px;
  }

  .gv-home-gallery-section h2 {
    font-size: 36px;
  }

  .gv-gallery-line {
    margin: 24px auto 30px;
  }

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

  .gv-lightbox-figure {
    max-width: calc(100vw - 28px);
  }

  .gv-lightbox-figure img {
    max-height: calc(100vh - 210px);
  }

  .gv-lightbox-close {
    top: 22px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 38px;
    line-height: 38px;
  }

  .gv-lightbox-arrow {
    width: 54px;
    height: 86px;
    margin-top: -43px;
  }

  .gv-lightbox-arrow::before {
    width: 25px;
    height: 25px;
    border-width: 5px;
  }

  .gv-lightbox-prev::before {
    left: 19px;
  }

  .gv-lightbox-next::before {
    right: 19px;
  }

  .gv-footer-inner {
    width: min(100% - 28px, 420px);
  }

  .gv-footer h3 {
    font-size: 20px;
  }

  .gv-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gv-footer-about p,
  .gv-footer-bottom p {
    font-size: 17px;
  }

  .topbar {
    display: none;
  }

  .hero .container {
    padding-top: 5rem;
    padding-bottom: 2.6rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero.home-hero .home-hero-content h1 {
    font-size: 34px;
  }

  .hero.home-hero .home-hero-content p {
    font-size: 13px;
    white-space: normal;
  }

  .section {
    padding: 4rem 0;
  }

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

  .gallery-grid img,
  .gallery-grid .tall {
    height: 270px;
  }
}
