:root {
  --forest: #17352f;
  --forest-deep: #0d2621;
  --sage: #7f9b87;
  --cream: #f6f1e7;
  --sand: #dfc9a4;
  --gold: #c68a3d;
  --ink: #192421;
  --muted: #68736f;
  --white: #fff;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(23, 53, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

.anchor-loaded [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-pad {
  padding: 120px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 0.99;
}

.section-lead {
  color: #45534f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(198, 138, 61, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: #ae732d;
  border-color: #ae732d;
  box-shadow: 0 16px 34px rgba(198, 138, 61, 0.34);
}

.btn-outline-brand {
  color: var(--forest);
  border: 1px solid rgba(23, 53, 47, 0.48);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.site-header {
  padding: 12px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(13, 38, 33, 0.08);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.site-header.is-scrolled .navbar-brand,
.site-header.menu-open .navbar-brand {
  color: var(--forest);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--sand);
  font-size: 1.25rem;
}

.is-scrolled .brand-mark,
.menu-open .brand-mark {
  border-color: rgba(23, 53, 47, 0.28);
  color: var(--gold);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 12px !important;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  bottom: 5px;
  left: 12px;
  width: calc(100% - 24px);
  height: 1px;
  content: "";
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-link,
.site-header.menu-open .nav-link {
  color: var(--forest);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(198, 138, 61, 0.32);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.is-scrolled .navbar-toggler,
.menu-open .navbar-toggler {
  border-color: rgba(23, 53, 47, 0.3);
}

.is-scrolled .navbar-toggler-icon,
.menu-open .navbar-toggler-icon {
  filter: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: url("../assets/img/hero-panorama.webp") center 55% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 23, 19, 0.92) 0%, rgba(5, 23, 19, 0.65) 49%, rgba(5, 23, 19, 0.19) 76%),
    linear-gradient(0deg, rgba(5, 23, 19, 0.38), transparent 45%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: -15%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: rgba(198, 138, 61, 0.09);
  filter: blur(70px);
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8.3vw, 8.4rem);
  line-height: 0.86;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.16);
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 56px;
  padding-inline: 24px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
}

.hero-facts > div {
  display: grid;
  min-width: 150px;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.hero-facts span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 35px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue i {
  font-size: 1rem;
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  50% { transform: translateX(7px); }
}

.intro-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 5%, rgba(223, 201, 164, 0.26), transparent 25%),
    #fff;
}

.intro-section p:not(.eyebrow) {
  max-width: 660px;
}

.host-note {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  max-width: 600px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid #e4ded2;
}

.host-note i {
  color: var(--gold);
  font-size: 1.5rem;
}

.host-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.host-note strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 400;
}

.image-composition {
  position: relative;
  min-height: 640px;
}

.main-photo {
  width: 84%;
  height: 570px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 160px 0 0;
  box-shadow: var(--shadow);
}

.accent-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 285px;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 20px 55px rgba(13, 38, 33, 0.2);
}

.image-badge {
  position: absolute;
  top: 45px;
  left: 2%;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  color: #fff;
  text-align: center;
  background: var(--forest);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(13, 38, 33, 0.25);
}

.image-badge strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.image-badge span {
  margin-top: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amenities-section {
  position: relative;
  background: var(--cream);
}

.amenity-card {
  height: 100%;
  min-height: 255px;
  padding: 34px 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 53, 47, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 53, 47, 0.1);
  transform: translateY(-7px);
}

.amenity-card > i {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 2.1rem;
}

.amenity-card h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 400;
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.amenity-card-accent {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  color: #fff;
  background: var(--forest);
}

.amenity-card-accent:hover {
  background: var(--forest-deep);
}

.amenity-card-accent img {
  width: 72px;
  height: 112px;
  object-fit: cover;
  border-radius: 50px;
}

.amenity-card-accent h3,
.amenity-card-accent p {
  color: #fff;
}

.amenity-card-accent p {
  color: rgba(255, 255, 255, 0.7);
}

.panorama-break {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 640px;
  align-items: center;
  color: #fff;
  background: url("../assets/img/sunset-wine.webp") center / cover fixed;
}

.panorama-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 30, 25, 0.91), rgba(8, 30, 25, 0.38));
}

.panorama-break h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.panorama-break p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 285px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--forest);
  border: 0;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0, 1), opacity 0.4s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 24, 20, 0.72), transparent 52%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus img {
  opacity: 0.86;
  transform: scale(1.055);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-wide {
  grid-column: span 2;
}

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

.gallery-item.is-extra {
  display: none;
}

.gallery-grid.show-all .gallery-item.is-extra {
  display: block;
  animation: gallery-in 0.5s ease both;
}

@keyframes gallery-in {
  from { opacity: 0; transform: translateY(18px); }
}

.gallery-count {
  display: inline-grid;
  min-width: 34px;
  height: 25px;
  margin-left: 6px;
  padding: 0 7px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 30px;
  font-size: 0.72rem;
}

.reviews-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(198, 138, 61, 0.14), transparent 33%),
    var(--forest-deep);
}

.reviews-section .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 4px;
  color: var(--sand);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(223, 201, 164, 0.45);
}

.text-link:hover {
  color: #fff;
}

.rating-panel {
  padding: clamp(30px, 5vw, 60px);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.rating-summary {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 1px solid #dcd5c8;
}

.rating-number {
  font-family: var(--serif);
  font-size: clamp(4.8rem, 9vw, 7.7rem);
  line-height: 0.8;
}

.rating-summary > div:last-child {
  display: grid;
}

.rating-summary strong {
  margin-top: 8px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.rating-summary span {
  color: var(--muted);
  font-size: 0.82rem;
}

.stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.rating-bars {
  display: grid;
  gap: 17px;
  margin-top: 35px;
}

.rating-row {
  display: grid;
  grid-template-columns: 95px 1fr 32px;
  gap: 13px;
  align-items: center;
  font-size: 0.78rem;
}

.rating-row > div {
  height: 5px;
  overflow: hidden;
  background: #ddd5c8;
  border-radius: 10px;
}

.rating-row i {
  display: block;
  height: 100%;
  background: var(--gold);
}

.rating-row strong {
  color: var(--forest);
  text-align: right;
}

.rating-note {
  margin: 26px 0 0;
  color: #7c827f;
  font-size: 0.7rem;
}

.location-section {
  overflow: hidden;
  background: #fff;
}

.location-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
}

.location-list li {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ece8df;
}

.location-list i {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  background: var(--cream);
  border-radius: 50%;
}

.location-list span {
  display: grid;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.location-list strong {
  color: var(--forest);
  font-size: 0.95rem;
}

.location-visual {
  position: relative;
  min-height: 650px;
}

.location-visual > img {
  width: 87%;
  height: 620px;
  object-fit: cover;
  border-radius: 0 0 170px;
  box-shadow: var(--shadow);
}

.location-card {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 310px;
  padding: 23px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 20px 55px rgba(13, 38, 33, 0.25);
}

.location-pin {
  display: grid;
  flex: 0 0 46px;
  height: 46px;
  place-items: center;
  color: var(--forest);
  background: var(--sand);
  border-radius: 50%;
}

.location-card > div {
  display: grid;
}

.location-card strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.location-card small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.contact-section {
  padding: 0 0 110px;
  background: linear-gradient(#fff 32%, var(--cream) 32%);
}

.contact-shell {
  overflow: hidden;
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.contact-host {
  position: relative;
  min-height: 660px;
}

.contact-host > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.contact-host::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 24, 20, 0.85), transparent 50%);
}

.host-caption {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 38px;
  left: 40px;
  display: grid;
}

.host-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.host-caption strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.contact-content {
  display: flex;
  min-height: 660px;
  padding: clamp(44px, 7vw, 85px);
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 201, 164, 0.15), transparent 32%),
    var(--forest);
}

.contact-content h2 {
  max-width: 700px;
}

.contact-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details > a,
.contact-details > span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.78rem;
  text-decoration: none;
}

.contact-details > a:hover {
  color: #fff;
}

.contact-details i {
  color: var(--sand);
}

.site-footer {
  padding: 75px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--forest-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-brand > i {
  color: var(--sand);
  font-size: 1.9rem;
}

.footer-brand span {
  display: grid;
  line-height: 1.25;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visitor-counter {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  font-size: 0.72rem;
}

.visitor-counter i,
.visitor-counter strong {
  color: var(--sand);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: flex-end;
}

.footer-nav a,
.footer-nav button {
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

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

.footer-bottom a:hover {
  color: #fff;
}

.modal-content {
  border: 0;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.modal-header {
  padding: 24px 28px;
}

.modal-body {
  padding: 28px;
}

.modal-body a {
  color: var(--forest);
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 65px 110px;
  place-items: center;
  background: rgba(3, 14, 12, 0.96);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox figure {
  display: grid;
  max-width: min(1180px, 100%);
  max-height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.lightbox figcaption {
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.lightbox-close {
  top: 24px;
  right: 26px;
}

.lightbox-prev {
  top: 50%;
  left: 28px;
}

.lightbox-next {
  top: 50%;
  right: 28px;
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  display: grid;
  visibility: hidden;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(23, 53, 47, 0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .gallery-grid {
    grid-auto-rows: 260px;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .visitor-counter {
    grid-column: span 2;
    grid-row: 2;
    justify-self: center;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 90px 0;
  }

  .site-header {
    padding: 5px 0;
  }

  .site-header:not(.is-scrolled) {
    background: rgba(13, 38, 33, 0.92);
    backdrop-filter: blur(12px);
  }

  .navbar-collapse {
    padding: 18px 0 12px;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-link {
    padding: 12px 2px !important;
  }

  .nav-link::after {
    left: 2px;
    width: 35px;
  }

  .navbar-nav .btn {
    margin-top: 8px;
  }

  .hero {
    min-height: 760px;
    background-position: 65% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 23, 19, 0.94), rgba(5, 23, 19, 0.62));
  }

  .scroll-cue {
    display: none;
  }

  .image-composition {
    min-height: 560px;
  }

  .main-photo {
    height: 500px;
  }

  .accent-photo {
    height: 250px;
  }

  .panorama-break {
    min-height: 550px;
    background-attachment: scroll;
  }

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

  .location-visual {
    min-height: 580px;
  }

  .location-visual > img {
    height: 550px;
  }

  .contact-host {
    min-height: 580px;
  }

  .contact-content {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero {
    min-height: 900px;
    background-position: 68% center;
  }

  .hero .row {
    min-height: 900px !important;
    padding: 112px 0 55px;
    align-items: flex-start !important;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts {
    gap: 18px 0;
    margin-top: 36px;
  }

  .hero-facts > div {
    min-width: 50%;
    padding: 0 15px;
  }

  .hero-facts > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .image-composition {
    min-height: 475px;
  }

  .main-photo {
    width: 92%;
    height: 420px;
    border-radius: 90px 0 0;
  }

  .accent-photo {
    width: 50%;
    height: 185px;
    border-width: 7px;
  }

  .image-badge {
    top: 30px;
    width: 105px;
    height: 105px;
  }

  .image-badge strong {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-tall {
    grid-row: span 1;
  }

  .rating-summary {
    gap: 18px;
  }

  .rating-row {
    grid-template-columns: 82px 1fr 30px;
  }

  .location-visual {
    min-height: 500px;
  }

  .location-visual > img {
    width: 92%;
    height: 480px;
    border-radius: 0 0 100px;
  }

  .location-card {
    right: 0;
    bottom: 25px;
    min-width: 0;
    max-width: 90%;
  }

  .contact-section {
    padding-bottom: 75px;
  }

  .contact-host {
    min-height: 490px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .visitor-counter {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .lightbox {
    padding: 70px 15px 80px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 1.25rem;
  }

  .brand-copy small {
    font-size: 0.52rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero-facts > div {
    min-width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
