.welcome-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(194, 155, 99, 0.18), transparent 34%),
    linear-gradient(135deg, #172219, #2f4634 54%, #0d120e);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.welcome-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-welcoming {
  overflow: hidden;
}

.welcome-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  animation: welcomeIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.welcome-card img {
  width: clamp(118px, 18vw, 178px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  object-fit: cover;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.welcome-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welcome-card h1 {
  margin: 0;
  font-size: clamp(2.1rem, 7vw, 5.3rem);
  line-height: 0.98;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(22px, calc((100vw - 1140px) / 2));
  color: #fff;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--color-ink);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(10, 20, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled .brand-mark,
.site-header.menu-open .brand-mark,
.site-footer .brand-mark {
  border-color: rgba(63, 95, 69, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  transform: translateY(-1px) scale(1.03);
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: rgba(20, 25, 18, 0.12);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  opacity: 0;
  background: rgba(8, 12, 8, 0.56);
  backdrop-filter: blur(2px);
  transition: opacity 360ms ease;
}

.menu-backdrop.is-open {
  pointer-events: auto;
  opacity: 1;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(390px, 88vw);
  height: 100vh;
  padding: 108px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #f8f2e8;
  background:
    linear-gradient(160deg, rgba(47, 70, 52, 0.97), rgba(20, 29, 21, 0.98)),
    var(--color-green-dark);
  backdrop-filter: blur(24px);
  transform: translateX(104%) scale(0.985);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -22px 0 80px rgba(5, 15, 8, 0.34);
}

.side-menu.is-open {
  transform: translateX(0) scale(1);
}

.side-menu a {
  position: relative;
  padding: 15px 0 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 700;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 360ms ease, transform 360ms ease, color var(--transition);
}

.side-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translateY(-50%) scale(0);
  transition: transform var(--transition);
}

.side-menu a:hover {
  color: #fff;
}

.side-menu a:hover::before {
  transform: translateY(-50%) scale(1);
}

.side-menu.is-open a {
  opacity: 1;
  transform: translateX(0);
}

.side-menu.is-open a:nth-child(1) { transition-delay: 80ms; }
.side-menu.is-open a:nth-child(2) { transition-delay: 120ms; }
.side-menu.is-open a:nth-child(3) { transition-delay: 160ms; }
.side-menu.is-open a:nth-child(4) { transition-delay: 200ms; }
.side-menu.is-open a:nth-child(5) { transition-delay: 240ms; }
.side-menu.is-open a:nth-child(6) { transition-delay: 280ms; }
.side-menu.is-open a:nth-child(7) { transition-delay: 320ms; }
.side-menu.is-open a:nth-child(8) { transition-delay: 360ms; }
.side-menu.is-open a:nth-child(9) { transition-delay: 400ms; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 8, 0.78), rgba(26, 38, 27, 0.56) 54%, rgba(8, 11, 8, 0.72)),
    url("https://i.postimg.cc/rFgd793r/ROLON-5.jpg") center / cover,
    linear-gradient(90deg, rgba(8, 11, 8, 0.98), rgba(26, 38, 27, 0.9) 54%, rgba(8, 11, 8, 0.98)),
    var(--color-green-dark);
}

.hero-video,
.hero-media-placeholder,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  top: 50%;
  right: max(22px, calc((100vw - 1140px) / 2));
  left: auto;
  width: min(52svh, 440px);
  height: min(92svh, 820px);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
}

.hero-media-placeholder {
  background: var(--color-blackout);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 8, 0.72), rgba(8, 11, 8, 0.48) 48%, rgba(8, 11, 8, 0.18) 74%, rgba(8, 11, 8, 0.56)),
    radial-gradient(circle at 74% 30%, rgba(194, 155, 99, 0.1), transparent 34%);
}

.scroll-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(140px, 20vw, 238px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: opacity 160ms linear;
  pointer-events: none;
}

.scroll-logo::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(194, 155, 99, 0.38);
  border-radius: inherit;
}

.scroll-logo img {
  width: 82%;
  height: 82%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  padding-top: 64px;
}

.hero-logo {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 750;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn-primary {
  color: #fff;
  background: var(--color-green);
  box-shadow: 0 14px 30px rgba(37, 56, 41, 0.28);
}

.btn-outline {
  color: var(--color-green-dark);
  border: 1px solid rgba(53, 94, 59, 0.22);
  background: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 1;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.6s infinite;
}

.section {
  padding: 110px 0;
}

.section-muted {
  background: linear-gradient(180deg, var(--color-soft), #fbf8f1);
}

.section-heading,
.cabin-grid,
.service-grid,
.gallery-sections,
.gallery-actions,
.activity-layout,
.info-grid,
.place-grid,
.location-layout,
.reservation-form,
.contact-grid,
.weather-testimonials,
.faq-list {
  width: var(--container);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading span,
.weather-card > span,
.testimonial-card > span {
  color: var(--color-wood);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.section-heading h2,
.weather-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 620px;
  color: var(--color-muted);
}

.cabin-grid {
  display: grid;
  gap: 24px;
}

.cabin-card {
  display: grid;
  grid-template-columns: minmax(240px, 42%) 1fr;
  overflow: hidden;
  border: 1px solid rgba(63, 95, 69, 0.1);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.media-placeholder,
.gallery-grid button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 239, 228, 0.72)),
    var(--color-soft);
}

.image-slot,
.gallery-grid button {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background-position: center;
  background-size: cover;
}

.image-slot span,
.gallery-grid button span {
  position: relative;
  z-index: 2;
  max-width: 78%;
  padding: 10px 12px;
  border: 1px solid rgba(63, 95, 69, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-green-dark);
  background: rgba(255, 253, 248, 0.82);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.image-slot img,
.gallery-grid img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease, transform 450ms ease;
}

.image-slot.has-image img,
.gallery-grid button.has-image img {
  opacity: 1;
}

.image-slot.is-loading::after,
.gallery-grid button.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.52) 44%, transparent 68%);
  animation: imageLoading 1.15s ease-in-out infinite;
  transform: translateX(-100%);
}

.image-error span {
  color: #7d3029;
  border-color: rgba(125, 48, 41, 0.2);
}

.image-slot.has-image span,
.gallery-grid button.has-image span {
  display: none;
}

.gallery-grid button:disabled {
  opacity: 1;
}

.cabin-card div {
  padding: clamp(24px, 4vw, 44px);
}

.cabin-card h3,
.service-card h3,
.info-card h3,
.place-card h3,
.location-layout h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.cabin-card p,
.service-card p,
.info-card p,
.place-card p,
.location-layout p {
  color: var(--color-muted);
}

.cabin-card span,
.cabin-card strong {
  display: block;
  margin-bottom: 14px;
}

.service-grid,
.info-grid,
.place-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.info-card,
.place-card,
.weather-card,
.testimonial-card,
.contact-action {
  border: 1px solid rgba(21, 23, 19, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 30px rgba(18, 24, 17, 0.06);
}

.service-card,
.info-card,
.place-card {
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.info-card:hover,
.place-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 95, 69, 0.18);
  box-shadow: var(--shadow-card);
}

.service-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--color-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.activity-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.activity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-soft), #fffdf8);
}

.activity-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.activity-copy p {
  margin: 0 0 24px;
  color: var(--color-muted);
}

.activity-copy .btn {
  align-self: flex-start;
}

.activity-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 16px;
}

.activity-gallery .media-placeholder {
  min-height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.activity-gallery .media-placeholder:first-child {
  grid-row: span 2;
}

.gallery-sections {
  display: grid;
  gap: 38px;
}

.gallery-group {
  display: grid;
  gap: 16px;
}

.gallery-group[hidden] {
  display: none;
}

.gallery-group-header {
  display: grid;
  gap: 4px;
}

.gallery-group-header span {
  color: var(--color-wood);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-group-header h3 {
  margin: 0;
  color: var(--color-green-dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

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

.gallery-grid button {
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-grid button[hidden] {
  display: none;
}

.gallery-grid button.has-image {
  cursor: pointer;
}

.gallery-grid button:hover img {
  transform: scale(1.06);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.reservation-section {
  background:
    linear-gradient(135deg, rgba(63, 95, 69, 0.12), rgba(194, 155, 99, 0.12)),
    #fbf8f1;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 19, 0.12);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(53, 94, 59, 0.11);
}

select {
  appearance: none;
}

.form-wide {
  grid-column: 1 / -1;
}

.location-layout,
.weather-testimonials {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: stretch;
}

.location-layout iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.location-layout div {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-soft), #fffdf8);
}

.place-card a {
  color: var(--color-green);
  font-weight: 800;
}

.weather-card,
.testimonial-card {
  padding: clamp(24px, 4vw, 40px);
}

.weather-card h2 {
  color: var(--color-green-dark);
}

.testimonial-card {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
  animation: fadeIn 300ms ease both;
}

.testimonial-slide p {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
}

.testimonial-slide span {
  color: var(--color-wood);
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-controls button,
.lightbox button {
  border: 0;
  border-radius: 50%;
  color: var(--color-ink);
  background: #fff;
  cursor: pointer;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
}

.faq-list {
  max-width: 860px;
}

.faq-list button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 23, 19, 0.12);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  transition: color var(--transition);
}

.faq-list button:hover {
  color: var(--color-green);
}

.faq-list div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-list div p {
  margin: 0;
  padding: 18px 0 24px;
  color: var(--color-muted);
}

.faq-list button.is-open + div {
  max-height: 180px;
}

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

.contact-action {
  display: flex;
  align-items: center;
  min-height: 82px;
  margin: 0;
  padding: 22px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 58px max(22px, calc((100vw - 1140px) / 2)) 34px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(194, 155, 99, 0.2), transparent 25%),
    linear-gradient(135deg, #172219, var(--color-green-dark));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: start;
}

.site-footer p,
.site-footer small,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-contact a,
.social-links a {
  color: #fff;
  transition: color var(--transition), transform var(--transition);
}

.footer-contact a:hover,
.social-links a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 10, 7, 0.9);
}

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

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  animation: zoomIn 240ms ease both;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}
