:root {
  --green: #63b51f;
  --green-dark: #3d8e12;
  --ink: #212328;
  --muted: #69717a;
  --line: #e8ece6;
  --soft: #f8faf6;
  --white: #ffffff;
  --gold: #d9a03a;
  --footer: #171c20;
  --shadow: 0 18px 45px rgba(37, 45, 30, 0.13);
  --soft-shadow: 0 10px 28px rgba(39, 49, 35, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(99, 181, 31, 0.045) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 48%, #ffffff 100%);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.setup-warning {
  position: fixed;
  inset: auto 20px 20px auto;
  z-index: 100;
  max-width: 420px;
  padding: 14px 18px;
  color: #fff;
  background: #9c3d1b;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(22px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(232, 236, 230, 0.7);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: box-shadow 0.3s ease, height 0.3s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  height: 68px;
  box-shadow: 0 12px 35px rgba(23, 28, 32, 0.1);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 12px));
}

body.nav-open .site-header {
  transform: translateY(0);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(39, 49, 35, 0.12));
}

.site-header.is-scrolled .brand-logo {
  width: 52px;
  height: 52px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #20252b;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--green-dark);
}

.site-nav .mobile-account-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
}

.language-switcher {
  position: relative;
}

.language {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(32, 37, 43, 0.18);
  border-radius: 50%;
  font-weight: 800;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.language:hover,
.language-switcher:focus-within .language {
  color: var(--green-dark);
  background: #f4faef;
  border-color: rgba(99, 181, 31, 0.48);
  box-shadow: 0 8px 18px rgba(35, 45, 28, 0.1);
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 55;
  display: grid;
  width: 178px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.language-menu a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a.is-active {
  color: var(--green-dark);
  background: #f4faef;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #70c72d, #4fae11);
  box-shadow: 0 10px 22px rgba(83, 172, 20, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(83, 172, 20, 0.32);
}

.btn.compact {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-outline {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--green);
}

.btn-outline:hover {
  background: #f3faef;
}

.btn-unavailable,
.btn-unavailable:disabled {
  color: #b42318 !important;
  opacity: 1;
  background: linear-gradient(135deg, #fff7f5, #fff);
  border-color: rgba(203, 55, 36, 0.54) !important;
  box-shadow: 0 12px 24px rgba(180, 35, 24, 0.08);
  cursor: not-allowed;
  -webkit-text-fill-color: #b42318;
}

.btn-unavailable:hover,
.btn-unavailable:disabled:hover {
  transform: none;
  background: linear-gradient(135deg, #fff1ef, #fff);
  box-shadow: 0 12px 24px rgba(180, 35, 24, 0.08);
}

.guest-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-account {
  position: relative;
}

.guest-account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 5px 12px 5px 6px;
  color: var(--ink);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(99, 181, 31, 0.56), rgba(217, 160, 58, 0.32)) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(35, 45, 28, 0.11);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.guest-account:hover .guest-account-toggle,
.guest-account:focus-within .guest-account-toggle {
  box-shadow: 0 14px 30px rgba(83, 172, 20, 0.18);
  transform: translateY(-1px);
}

.guest-account-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.guest-avatar,
.profile-photo {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #70c72d, #3d8e12);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.18);
}

.guest-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 13px;
}

.guest-avatar.small {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.guest-avatar img,
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-account-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.guest-account-copy small {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guest-account-copy strong {
  max-width: 108px;
  overflow: hidden;
  color: #1c2227;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  z-index: 50;
  display: grid;
  gap: 4px;
  min-width: 258px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(232, 236, 230, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(28, 35, 26, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.guest-menu::before {
  position: absolute;
  top: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  content: "";
  background: #fff;
  border-top: 1px solid rgba(232, 236, 230, 0.95);
  border-left: 1px solid rgba(232, 236, 230, 0.95);
  transform: rotate(45deg);
}

.guest-account:hover .guest-menu,
.guest-account:focus-within .guest-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.guest-menu-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.guest-menu-head strong,
.guest-menu-head small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-menu-head strong {
  font-size: 14px;
  font-weight: 900;
}

.guest-menu-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.guest-menu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.guest-menu a svg {
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}

.guest-menu a:hover {
  color: var(--green-dark);
  background: #f4faef;
  transform: translateX(2px);
}

.guest-menu a.danger {
  color: #9c3d1b;
}

.guest-menu a.danger svg {
  color: #9c3d1b;
}

.hero {
  position: relative;
  min-height: 440px;
  padding: 150px clamp(24px, 7vw, 90px) 100px;
  overflow: hidden;
  color: #fff;
  background: #171c20;
  border-radius: 0 0 0 72px;
  isolation: isolate;
  --hero-parallax: 0px;
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -80px;
  width: 64%;
  height: 160px;
  content: "";
  background: #fff;
  border-radius: 100% 0 0 0;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: -70px;
  z-index: 0;
  background: var(--hero-bg-image, url("assets/hero-lobby.jpg")) center / cover;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.12);
  transform-origin: 58% 48%;
  animation: heroCinematicZoom 11s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
  will-change: transform, filter;
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 34%, rgba(118, 201, 54, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.9) 0%, rgba(8, 10, 11, 0.64) 38%, rgba(8, 10, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.09) 46%, transparent 57%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.5;
  transform: translateX(-36%);
  animation: heroLightSweep 6.5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 680px;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9bee5b;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-kicker {
  margin: 20px 0 12px;
  color: #92e548;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
}

.hero-copy {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.booking-panel {
  position: relative;
  z-index: 10;
  width: min(1110px, calc(100% - 40px));
  margin: -52px auto 0;
}

.booking-card {
  display: grid;
  grid-template-columns:
    minmax(160px, 1fr)
    minmax(160px, 1fr)
    minmax(180px, 0.95fr)
    minmax(240px, 1.35fr)
    auto;
  align-items: end;
  gap: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(232, 236, 230, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card label,
.booking-card .home-room-type-field {
  display: grid;
  gap: 8px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.booking-card label:first-child {
  padding-left: 0;
}

.booking-card label:nth-child(4),
.booking-card .home-room-type-field {
  border-right: 0;
}

.booking-card span {
  font-size: 12px;
  font-weight: 800;
}

.booking-card input,
.booking-card select,
.newsletter input {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.booking-card input,
.booking-card select {
  min-height: 28px;
  font-weight: 700;
}

.booking-card .room-select-trigger {
  min-height: 42px;
}

.booking-card .room-select-trigger [data-room-value] {
  font-size: 14px;
  font-weight: 800;
}

.booking-card .room-select-menu {
  width: max(100%, 340px);
}

.booking-card .home-search-submit {
  align-self: center;
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.booking-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(760px, 88%);
  margin: 0 auto;
  padding: 18px 42px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 18px 34px rgba(34, 43, 30, 0.08);
}

.booking-benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.booking-benefits strong {
  display: block;
  font-size: 12px;
}

.booking-benefits span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.accor-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(245px, 0.34fr);
  align-items: stretch;
  gap: 14px;
  width: min(1160px, calc(100% - 40px));
  margin: 52px auto 0;
  padding: 0;
}

.accor-showcase,
.accor-points {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 232, 214, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(32, 42, 31, 0.09);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.accor-showcase:hover,
.accor-points:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(36, 44, 30, 0.14);
}

.accor-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(300px, 0.72fr);
  min-height: 290px;
}

.accor-copy {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 0 100%, rgba(99, 181, 31, 0.08), transparent 34%),
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 80%, rgba(255, 255, 255, 0.68) 100%);
}

.accor-copy-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.accor-copy-head img {
  width: 72px;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(184, 135, 63, 0.16));
}

.accor-copy-head .section-label {
  margin: 0;
}

.accor-copy h2 {
  max-width: 470px;
  margin: 0 0 10px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.accor-copy h2 strong {
  color: var(--ink);
}

.accor-copy p:not(.section-label) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.accor-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 24px;
  padding: 0 20px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(221, 232, 214, 0.98);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(32, 42, 31, 0.09);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.accor-action:hover {
  border-color: rgba(99, 181, 31, 0.42);
  box-shadow: 0 18px 36px rgba(36, 44, 30, 0.12);
  transform: translateX(4px);
}

.accor-action svg {
  width: 15px;
  height: 15px;
}

.accor-media {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.34) 36%, rgba(255, 255, 255, 0.03) 100%),
    var(--accor-bg-image) center / cover no-repeat;
}

.accor-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(27, 36, 30, 0.08) 100%);
  pointer-events: none;
}

.accor-points {
  display: grid;
  align-content: center;
  padding: 18px 20px;
}

.accor-points article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(220, 232, 214, 0.95);
}

.accor-points article:last-child {
  border-bottom: 0;
}

.accor-points article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green);
  background: linear-gradient(180deg, #f2fee9, #edf8e8);
  border: 1px solid rgba(191, 226, 171, 0.95);
  border-radius: 999px;
}

.accor-points svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
}

.accor-points strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.accor-points p {
  display: block;
  margin: 5px 0 0;
  color: #6f7784;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 70px auto 0;
}

.rooms-section,
.amenities-section,
.gallery-section,
.testimonial-section {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.section-heading h2,
.feature-copy h2,
.location-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

.slider-shell,
.gallery-wrap {
  position: relative;
  min-width: 0;
}

.room-track,
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.room-track::-webkit-scrollbar,
.gallery-track::-webkit-scrollbar {
  display: none;
}

.room-card,
.testimonial-card,
.amenity-grid article,
.feature-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.room-card {
  position: relative;
  display: block;
  min-width: 260px;
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.room-card:hover {
  border-color: rgba(99, 181, 31, 0.55);
  box-shadow: 0 24px 48px rgba(36, 47, 31, 0.17);
}

.room-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.room-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.card-body {
  position: relative;
  padding: 18px 20px 20px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.card-body strong {
  color: var(--green-dark);
  font-size: 16px;
}

.card-body span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.card-body::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  content: "→";
  color: var(--green-dark);
  background: #f3faef;
  border: 1px solid rgba(99, 181, 31, 0.28);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.room-card:hover .card-body::after,
.room-card:focus-visible .card-body::after {
  opacity: 1;
  transform: translateX(0);
}

.room-card:focus-visible {
  outline: 3px solid rgba(99, 181, 31, 0.35);
  outline-offset: 4px;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.promo-badge,
.promo-inline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
  background: linear-gradient(135deg, #d98b18, #63b51f);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 28px rgba(217, 139, 24, 0.22);
  font-weight: 900;
}

.promo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
}

.promo-inline {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
}

.price-was,
.ota-price-box del,
.room-detail-price del,
.price-summary del,
.price-summary small del {
  color: #8a929d;
  font-size: 13px;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.deal-save,
.promo-summary-line {
  color: #b36a09;
  background: #fff6e8;
  border: 1px solid rgba(217, 139, 24, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.round-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.round-control:hover {
  background: #f4fbef;
  transform: translateY(-50%) scale(1.08);
}

[data-scroll-left] {
  left: -21px;
}

[data-scroll-right] {
  right: -21px;
}

.rooms-section.section {
  width: min(1160px, calc(100% - 40px));
}

.rooms-section {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.rooms-section .section-heading {
  position: sticky;
  top: 94px;
  align-self: start;
  padding-top: 0;
}

.section-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: -4px 0 22px;
  background: var(--green-dark);
  border-radius: 999px;
}

.rooms-intro {
  max-width: 190px;
  margin: 0 0 24px;
  color: #596676;
  font-size: 12px;
  line-height: 1.55;
}

.rooms-side-benefits {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.rooms-side-benefits article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.rooms-side-benefits i {
  width: 24px;
  height: 24px;
  color: var(--green-dark);
  stroke-width: 1.8;
}

.rooms-side-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.rooms-side-benefits span {
  display: block;
  margin-top: 5px;
  color: #687481;
  font-size: 11px;
  line-height: 1.4;
}

.rooms-section .slider-shell {
  display: grid;
  align-items: stretch;
}

.rooms-section .room-track {
  grid-auto-columns: minmax(250px, 1fr);
  gap: 24px;
  padding: 0;
}

.rooms-section .room-card {
  min-width: 260px;
  background: #fff;
  border-color: rgba(221, 229, 218, 0.98);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transform-style: flat;
}

.rooms-section .room-card:hover {
  border-color: rgba(99, 181, 31, 0.42);
  box-shadow: 0 24px 48px rgba(36, 47, 31, 0.17);
  transform: translateY(-3px);
}

.room-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.rooms-section .room-card .room-card-media img {
  display: block;
  height: 128px;
  border-radius: 0;
}

.rooms-section .card-body {
  display: grid;
  padding: 16px 18px 18px;
}

.rooms-section .card-body::after {
  display: none;
}

.rooms-section .card-body h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.rooms-section .card-body p {
  min-height: 34px;
  margin-bottom: 14px;
  color: #627080;
  font-size: 12px;
  line-height: 1.42;
}

.room-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(222, 230, 220, 0.86);
}

.room-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #20252b;
  font-size: 11px;
  font-weight: 700;
}

.room-meta-row svg {
  width: 14px;
  height: 14px;
  color: #22303c;
  stroke-width: 1.8;
}

.room-amenity-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(222, 230, 220, 0.86);
}

.room-amenity-strip span {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  padding: 0 6px;
  color: #24313c;
  text-align: center;
  border-right: 1px solid rgba(222, 230, 220, 0.86);
  font-size: 11px;
  font-weight: 700;
}

.room-amenity-strip span:last-child {
  border-right: 0;
}

.room-amenity-strip svg {
  width: 16px;
  height: 16px;
  color: #22303c;
  stroke-width: 1.75;
}

.room-amenity-strip small {
  display: block;
  color: #26313b;
  font-size: 9px;
  line-height: 1.25;
  font-weight: 700;
}

.room-price-panel {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.price-kicker {
  color: #737f8c !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.rooms-section .price-was {
  display: block;
  color: #8b949f;
  font-size: 12px;
}

.rooms-section .card-body strong {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0;
}

.rooms-section .card-body strong span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.rooms-section .card-body .price-plus {
  color: var(--ink);
  font-size: 12px;
  vertical-align: super;
}

.rooms-section .price-tax-note {
  color: #6b7582;
  font-size: 10px;
  font-weight: 700;
}

.room-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.room-card-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 8px;
  color: #2a3a2f;
  background: #f4f8f1;
  border: 1px solid rgba(221, 230, 216, 0.95);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
}

.room-card-tags svg {
  width: 12px;
  height: 12px;
  color: var(--green-dark);
}

.room-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  margin-top: 2px;
  color: #fff !important;
  background: linear-gradient(135deg, #158407, #28a411);
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(32, 158, 15, 0.18);
  font-size: 12px !important;
  font-weight: 900 !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.room-card-cta svg {
  width: 14px;
  height: 14px;
}

.rooms-section .room-card:hover .room-card-cta {
  box-shadow: 0 22px 40px rgba(32, 158, 15, 0.26);
  transform: translateY(-1px);
}

.rooms-section .badge {
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  background: linear-gradient(135deg, #1e9b10, #56c21e);
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(19, 110, 10, 0.18);
}

.rooms-section .promo-badge {
  top: 14px;
  right: 14px;
}

.rooms-section [data-scroll-left] {
  left: -21px;
}

.rooms-section [data-scroll-right] {
  right: -21px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(90px, 1fr));
  gap: 16px;
}

.amenity-grid article {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px 10px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.amenity-grid article:hover {
  border-color: rgba(99, 181, 31, 0.55);
  transform: translateY(-6px);
}

.amenity-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--green);
  stroke-width: 1.7;
}

.amenity-grid span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

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

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 47%;
  min-height: 320px;
  overflow: hidden;
}

.feature-copy {
  padding: 32px 28px;
}

.feature-copy p:not(.section-label) {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(99, 181, 31, 0.65);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(99, 181, 31, 0.12);
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.feature-cta:hover {
  color: #fff;
  background: var(--green);
  box-shadow: 0 22px 42px rgba(99, 181, 31, 0.24);
  transform: translateY(-2px);
}

.feature-cta svg {
  width: 18px;
  height: 18px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover img {
  transform: scale(1.07);
}

.feature-icon {
  position: absolute;
  right: 40%;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--gold);
  background: #fff;
  border: 1px solid rgba(217, 160, 58, 0.55);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
}

.gallery-track {
  grid-auto-columns: 160px;
}

.lead-page {
  padding-top: 96px;
}

.lead-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.84fr);
  align-items: stretch;
  gap: 38px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 58px 28px 42px;
}

.lead-hero-copy {
  align-self: center;
}

.lead-hero-copy h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.02;
}

.lead-hero-copy p:not(.section-label) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lead-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.lead-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 11px;
  color: #495058;
  background: #fff;
  border: 1px solid #dfe5da;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.lead-hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.lead-preview {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #15211c;
  border: 1px solid rgba(23, 42, 32, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(22, 37, 29, 0.16);
}

.lead-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lead-preview:hover img {
  transform: scale(1.035);
}

.lead-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 21, 16, 0.92) 100%);
  content: "";
}

.lead-preview-caption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.lead-preview-caption span {
  color: #c9f69f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-preview-caption strong {
  display: block;
  margin: 8px 0 7px;
  color: #fff;
  font-size: 29px;
  line-height: 1.15;
}

.lead-preview-caption p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.lead-form-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 30px;
  max-width: var(--container);
  margin: 10px auto 80px;
  padding: 38px 28px 0;
  border-top: 1px solid #e1e5dd;
}

.lead-assurance,
.lead-page-form {
  border: 1px solid #dfe4db;
  border-radius: 8px;
}

.lead-assurance {
  position: sticky;
  top: 116px;
  align-self: start;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 70, 55, 0.96), rgba(16, 30, 23, 0.98)),
    repeating-linear-gradient(135deg, transparent 0 48px, rgba(255, 255, 255, 0.025) 48px 96px);
  border-color: #223a2e;
  box-shadow: 0 20px 48px rgba(17, 35, 25, 0.13);
}

.lead-assurance .section-label {
  color: #b8ed86;
}

.lead-assurance h2 {
  margin: 9px 0 28px;
  color: #fff;
  font-size: 31px;
  line-height: 1.12;
}

.lead-assurance ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lead-assurance li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-assurance li > b {
  color: #e1b84b;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.lead-assurance li > span {
  display: grid;
  gap: 4px;
}

.lead-assurance li strong {
  color: #fff;
  font-size: 13px;
}

.lead-assurance li small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.5;
}

.lead-contact-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
}

.lead-contact-note svg {
  width: 19px;
  height: 19px;
  color: #b8ed86;
}

.lead-contact-note span {
  display: grid;
  gap: 2px;
}

.lead-contact-note small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-contact-note strong {
  color: #fff;
  font-size: 12px;
}

.lead-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(25, 39, 31, 0.08);
}

.lead-form-heading {
  display: grid;
  gap: 7px;
  padding-bottom: 22px;
  margin-bottom: 2px;
  border-bottom: 1px solid #e3e7df;
}

.lead-form-heading > span {
  color: var(--green-dark);
  letter-spacing: 0.08em;
}

.lead-form-heading h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.15;
}

.lead-form-heading p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.lead-page-form label {
  display: grid;
  gap: 8px;
}

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

.lead-page-form span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-page-form input,
.lead-page-form select,
.lead-page-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-page-form input,
.lead-page-form select {
  height: 50px;
}

.lead-page-form textarea {
  min-height: 138px;
  padding-top: 14px;
  resize: vertical;
}

.lead-page-form input:focus,
.lead-page-form select:focus,
.lead-page-form textarea:focus {
  background: #fff;
  border-color: rgba(99, 181, 31, 0.68);
  box-shadow: 0 0 0 4px rgba(99, 181, 31, 0.12);
}

.lead-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 2px;
  border-top: 1px solid #e3e7df;
}

.lead-form-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 360px;
  color: #747c78;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.lead-form-footer > span svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}

.lead-form-footer .btn {
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 0 20px;
}

.gallery-track img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-track img:hover {
  filter: saturate(1.12);
  transform: translateY(-6px) scale(1.02);
}

.gallery-next {
  right: -16px;
}

.gallery-prev {
  left: -16px;
}

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

.testimonial-card {
  padding: 26px;
}

.testimonial-card > svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  fill: rgba(99, 181, 31, 0.16);
}

.testimonial-card p {
  min-height: 78px;
  margin: 14px 0 18px;
  color: #41484f;
  line-height: 1.65;
}

.guest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, #1f5d93, #7fb65d);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.guest strong,
.guest small {
  display: block;
}

.guest small {
  color: var(--muted);
}

.location-band {
  display: grid;
  grid-template-columns: 1fr 1.45fr 0.9fr 1.05fr;
  gap: 28px;
  align-items: center;
  margin-top: 72px;
  padding: 38px clamp(24px, 5vw, 72px);
  background: rgba(248, 250, 246, 0.92);
  border-top: 1px solid var(--line);
}

.location-copy p:not(.section-label) {
  color: var(--muted);
  line-height: 1.65;
}

.map-image,
.hotel-night {
  width: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a,
.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #394049;
  font-size: 14px;
}

.contact-card svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.socials {
  display: flex;
  gap: 14px;
  padding-top: 6px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(99, 181, 31, 0.24);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(35, 45, 28, 0.07);
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.socials a:hover {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 12px 24px rgba(58, 135, 14, 0.2);
  transform: translateY(-3px);
}

.socials a > svg {
  width: 18px;
  height: 18px;
}

.social-brand-icon {
  fill: currentColor;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 1fr 1.45fr;
  gap: 36px;
  padding: 42px clamp(24px, 5vw, 72px) 36px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(99, 181, 31, 0.18), transparent 30%),
    linear-gradient(135deg, #192026, #111518);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer nav,
.newsletter,
.footer-greenkey {
  display: grid;
  gap: 9px;
  align-content: start;
}

.site-footer strong {
  color: #fff;
}

.footer-brand {
  align-items: flex-start;
}

.footer-greenkey {
  position: relative;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  max-width: 390px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 8px;
}

.footer-greenkey::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 52px;
  height: 38px;
  content: "";
  border-right: 1px solid rgba(99, 181, 31, 0.22);
  border-bottom: 1px solid rgba(99, 181, 31, 0.22);
}

.footer-greenkey-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(99, 181, 31, 0.11);
  border: 1px solid rgba(99, 181, 31, 0.3);
  border-radius: 8px;
}

.footer-greenkey-mark img {
  width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.footer-greenkey-mark svg {
  width: 30px;
  height: 30px;
  color: #76cb38;
}

.footer-greenkey p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.newsletter label {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.newsletter input {
  color: #fff;
}

.newsletter button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.footer-pattern {
  min-height: 120px;
  background: url("data:image/svg+xml,%3Csvg width='190' height='122' viewBox='0 0 190 122' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.85' stroke='%2375C936' stroke-width='1.5'%3E%3Crect x='4' y='34' width='22' height='22' rx='7'/%3E%3Crect x='34' y='18' width='22' height='22' rx='7'/%3E%3Crect x='64' y='18' width='22' height='22' rx='7'/%3E%3Crect x='94' y='18' width='22' height='22' rx='7'/%3E%3Crect x='140' y='10' width='22' height='22' rx='7'/%3E%3Crect x='20' y='64' width='22' height='22' rx='7'/%3E%3Crect x='50' y='64' width='22' height='22' rx='7'/%3E%3Crect x='82' y='54' width='22' height='22' rx='7'/%3E%3Crect x='116' y='44' width='22' height='22' rx='7'/%3E%3Crect x='152' y='48' width='22' height='22' rx='7'/%3E%3Crect x='6' y='94' width='22' height='22' rx='7'/%3E%3Crect x='44' y='94' width='22' height='22' rx='7'/%3E%3Crect x='76' y='86' width='22' height='22' rx='7'/%3E%3Crect x='112' y='82' width='22' height='22' rx='7'/%3E%3Crect x='150' y='86' width='22' height='22' rx='7'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 18px;
  color: #fff;
  background: #1d252b;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 21, 24, 0.58);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 0.25s ease;
}

.reservation-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.reservation-dialog {
  position: relative;
  width: min(660px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.reservation-modal.is-open .reservation-dialog {
  transform: translateY(0) scale(1);
}

.reservation-dialog h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #f6f8f3;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

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

.reservation-form label {
  display: grid;
  gap: 8px;
}

.reservation-form label span {
  font-size: 12px;
  font-weight: 800;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  border-color: rgba(99, 181, 31, 0.7);
  box-shadow: 0 0 0 3px rgba(99, 181, 31, 0.12);
}

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

.reservation-summary {
  padding: 14px 16px;
  color: #394049;
  background: #f5faef;
  border: 1px solid rgba(99, 181, 31, 0.24);
  border-radius: 8px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.9, 0.2, 1);
}

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

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

.booking-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 70px;
}

.booking-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.booking-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
}

.booking-hero p:not(.section-label) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.rooms-hero {
  position: relative;
  min-height: 320px;
  margin-bottom: 0;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  align-content: end;
  background: #1a2420;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(24, 34, 27, 0.18);
  isolation: isolate;
}

.rooms-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.86) 0%, rgba(10, 18, 14, 0.54) 46%, rgba(10, 18, 14, 0.14) 78%),
    linear-gradient(0deg, rgba(8, 13, 11, 0.52), transparent 58%);
}

.rooms-hero-image {
  position: absolute;
  inset: -5%;
  z-index: -2;
  background-image: var(--rooms-hero-image);
  background-position: center;
  background-size: cover;
  animation: roomsHeroPan 16s ease-in-out infinite alternate;
  will-change: transform;
}

.rooms-hero-content {
  position: relative;
  max-width: 710px;
}

.rooms-hero .section-label {
  color: #8ff34a;
}

.rooms-hero h1 {
  max-width: 760px;
  color: #fff;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.rooms-hero p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.26);
}

.rooms-hero + .rooms-filter {
  margin-top: -42px;
}

.booking-image-hero + .booking-alert,
.booking-image-hero + .booking-search {
  position: relative;
  z-index: 2;
}

.booking-image-hero + .booking-search {
  margin-top: -42px;
  margin-bottom: 40px;
  top: auto;
}

.booking-image-hero + .booking-alert {
  margin-top: 18px;
}

@keyframes roomsHeroPan {
  0% {
    transform: scale(1.05) translate3d(-1%, -1%, 0);
  }

  100% {
    transform: scale(1.13) translate3d(2%, 1%, 0);
  }
}

.booking-alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  color: #fff;
  background: #1d252b;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.booking-alert.success {
  background: var(--green-dark);
}

.booking-alert.error {
  background: #b33b24;
}

.ota-search {
  position: sticky;
  top: 82px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 1px;
  margin-bottom: 28px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ota-search label,
.ota-search .room-type-field {
  display: grid;
  gap: 8px;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
}

.ota-search label span,
.ota-search .room-type-field > span:first-child,
.checkout-form label,
.price-summary span,
.ota-price-box span,
.ota-price-box small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.ota-search input,
.ota-search select,
.checkout-form input,
.checkout-form textarea {
  min-height: 38px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 800;
}

.ota-search button {
  min-width: 150px;
}

.booking-search {
  grid-template-columns:
    minmax(150px, 1fr)
    minmax(150px, 1fr)
    minmax(100px, 0.68fr)
    minmax(100px, 0.68fr)
    minmax(230px, 1.35fr)
    auto;
  align-items: stretch;
}

.booking-search .room-type-field {
  min-width: 0;
}

.room-type-control {
  position: relative;
  display: block !important;
  min-width: 0;
  color: var(--ink) !important;
}

.room-type-control .native-room-select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 11px;
  color: var(--ink);
  background: #f7faf5;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 6px;
  font-weight: 800;
}

.room-type-control.is-enhanced .native-room-select {
  display: none;
}

.room-select-trigger {
  display: none;
  grid-template-columns: 20px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 11px;
  color: var(--ink);
  background: #f7faf5;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.room-type-control.is-enhanced .room-select-trigger {
  display: grid;
}

.room-select-trigger:hover,
.room-select-trigger[aria-expanded="true"],
.room-select-trigger:focus-visible {
  background: #fff;
  border-color: rgba(99, 181, 31, 0.68);
  box-shadow: 0 0 0 3px rgba(99, 181, 31, 0.1);
  outline: 0;
}

.room-select-trigger > svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.room-select-trigger [data-room-value] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-select-chevron {
  transition: transform 0.22s ease;
}

.room-select-trigger[aria-expanded="true"] .room-select-chevron {
  transform: rotate(180deg);
}

.room-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  display: grid !important;
  width: max(100%, 330px);
  max-height: 320px;
  padding: 7px;
  overflow-y: auto;
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(35, 43, 38, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(29, 37, 31, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.room-type-control.is-open .room-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.room-select-option {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 58px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.room-select-option:hover,
.room-select-option:focus-visible {
  color: var(--green-dark);
  background: #f3faef;
  outline: 0;
  transform: translateX(2px);
}

.room-select-option.is-selected {
  color: var(--green-dark);
  background: linear-gradient(90deg, rgba(99, 181, 31, 0.14), rgba(99, 181, 31, 0.05));
}

.room-option-icon {
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--green-dark) !important;
  background: #fff;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 6px;
}

.room-option-icon svg,
.room-option-check {
  width: 17px;
  height: 17px;
}

.room-select-option strong,
.room-select-option small {
  display: block;
}

.room-select-option strong {
  font-size: 13px;
  line-height: 1.25;
}

.room-select-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.room-option-check {
  color: var(--green-dark);
  opacity: 0;
}

.room-select-option.is-selected .room-option-check {
  opacity: 1;
}

.booking-search .room-search-submit {
  align-self: center;
  min-width: 172px;
  min-height: 46px;
  padding: 0 20px;
  margin-inline-start: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 28px;
  align-items: start;
}

.booking-results {
  display: grid;
  gap: 18px;
}

.booking-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 0 2px;
  color: var(--muted);
}

.booking-meta > span {
  display: none;
}

.booking-result-count {
  display: flex;
  align-items: center;
  gap: 11px;
}

.booking-result-count > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green-dark);
  background: #f1faea;
  border: 1px solid #d6eac7;
  border-radius: 8px;
}

.booking-result-count svg {
  width: 18px;
  height: 18px;
}

.booking-result-count > div {
  display: grid;
  gap: 2px;
}

.booking-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.booking-result-count small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.booking-stay-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-stay-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 9px;
  color: #596168;
  background: #fff;
  border: 1px solid #e2e7df;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
}

.booking-stay-meta b {
  color: #98a09b;
  font-size: 9px;
  text-transform: uppercase;
}

.booking-stay-meta svg {
  width: 14px;
  height: 14px;
  color: var(--green-dark);
}

.ota-room-card,
.checkout-card,
.booking-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.ota-room-card {
  display: grid;
  grid-template-columns: 220px minmax(210px, 1fr) 220px;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ota-room-card.is-selected {
  border-color: rgba(99, 181, 31, 0.8);
  box-shadow: 0 18px 48px rgba(79, 174, 17, 0.16);
}

.ota-room-card:hover {
  transform: translateY(-2px);
}

.ota-room-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.ota-room-main {
  display: grid;
  gap: 13px;
  align-content: start;
  min-width: 0;
  padding: 2px 0;
}

.ota-room-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ota-room-title h2,
.checkout-card h2,
.booking-empty h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: 0;
}

.ota-room-title h2 {
  flex: 1 1 100%;
  max-width: 360px;
  color: #22272e;
  font-size: 24px;
  line-height: 1.12;
}

.ota-room-main p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.badge-inline {
  padding: 4px 8px;
  color: var(--green-dark);
  background: #edf8e7;
  border: 1px solid #d3e9c4;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.room-facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 32px;
  padding: 6px 9px;
  color: #394049;
  background: #f7f9f5;
  border: 1px solid #e8ede4;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  white-space: normal;
}

.room-facts .room-fact-capacity {
  width: fit-content;
}

.room-facts svg {
  width: 15px;
  height: 15px;
  color: var(--green-dark);
  stroke-width: 2;
}

.room-facts .room-facility-icons {
  display: inline-grid;
  grid-template-columns: repeat(3, 30px);
  gap: 4px;
  width: auto;
  min-height: 34px;
  padding: 2px 4px;
  background: transparent;
  border: 0;
}

.room-facility-icons svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  background: #f5f9f2;
  border: 1px solid #dfead8;
  border-radius: 50%;
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 30px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: #f2f9ed;
  border: 1px solid #dcecd0;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
}

.stock svg {
  width: 15px;
  height: 15px;
}

.stock.unavailable {
  color: #b33b24;
  background: #fff4f1;
  border-color: #f0d1ca;
}

.stock.is-limited {
  color: #9a5a06;
  background: #fff8e9;
  border-color: #efd59d;
}

.ota-price-box {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: end;
  text-align: right;
  border-left: 1px solid var(--line);
  padding: 18px 0 18px 18px;
  background: linear-gradient(90deg, transparent, rgba(246, 249, 243, 0.72));
}

.ota-price-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
  color: #747c82 !important;
  font-size: 9px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ota-price-label b {
  color: #424950;
  font: inherit;
}

.ota-price-box strong,
.price-summary b {
  color: var(--green-dark);
  font-size: 26px;
  line-height: 1.08;
}

.ota-price-box > strong {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 100%;
  color: #398b15;
  font-size: 25px;
  letter-spacing: 0;
  white-space: nowrap;
}

.ota-average-rate {
  color: #697177 !important;
  font-size: 9px !important;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.price-plus {
  display: inline-block;
  flex: 0 0 auto;
  margin: 1px 0 0 3px;
  color: currentColor;
  font-size: 0.48em;
  font-weight: 900;
  line-height: 1;
  vertical-align: top;
}

.price-tax-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 250px;
  color: #6d7479;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.price-tax-note svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: var(--green-dark);
}

.room-card .price-tax-note {
  display: block;
  margin-top: 5px;
}

.room-detail-price .price-tax-note,
.ota-price-box .price-tax-note {
  text-align: right;
}

.ota-price-box .price-tax-note {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: start;
  max-width: 220px;
  margin-top: 1px;
  padding: 8px 9px;
  color: #737a7f;
  background: #fff;
  border: 1px solid #e5e9e1;
  border-radius: 7px;
  font-size: 9px;
  text-align: left;
}

.ota-price-box .btn {
  min-width: 156px;
  min-height: 44px;
  margin-top: 4px;
  padding: 0 16px;
  justify-content: center;
  font-size: 12px;
}

.checkout-card {
  position: sticky;
  top: 174px;
  display: grid;
  gap: 20px;
  padding: 26px;
}

.checkout-heading {
  display: grid;
  gap: 7px;
}

.checkout-heading h2 {
  font-size: 30px;
}

.checkout-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.checkout-step {
  width: fit-content;
  padding: 5px 8px;
  color: #755000;
  background: #fff5cd;
  border: 1px solid #e8c75a;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-summary {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #f8fbf6;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 8px;
}

.price-summary > span:not(.promo-summary-line),
.price-summary > small:not([class]) {
  display: none;
}

.price-summary-room {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.price-summary-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #d6e9c8;
  border-radius: 7px;
}

.price-summary-icon svg {
  width: 19px;
  height: 19px;
}

.price-summary-room > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.price-summary-room small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-summary-room strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  text-overflow: ellipsis;
}

.price-summary-stay {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #e0e9da;
  border-bottom: 1px solid #e0e9da;
}

.price-summary-stay span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #5f676c;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.price-summary-stay svg {
  width: 14px;
  height: 14px;
  color: var(--green-dark);
}

.price-summary-stay b {
  color: var(--ink);
  font-size: 11px;
}

.price-summary-stay em {
  color: #929a95;
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.booking-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-total-line > span {
  display: grid;
  gap: 3px;
}

.booking-total-line small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.booking-total-line em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

.booking-total-line b {
  white-space: nowrap;
  text-align: right;
}

[data-booking-total]::after {
  margin-left: 2px;
  content: "++";
  font-size: 0.56em;
  vertical-align: super;
}

.summary-tax-note {
  max-width: none;
  padding: 10px;
  color: #5f6862;
  background: #fff;
  border: 1px solid #e2e8de;
  border-radius: 7px;
}

.nightly-rate-details {
  border-top: 1px solid #e0e9da;
}

.nightly-rate-details summary {
  padding-top: 11px;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.nightly-rate-details > div {
  display: grid;
  gap: 7px;
  padding-top: 10px;
}

.nightly-rate-details span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
}

.nightly-rate-details b {
  color: var(--ink);
  font-size: 10px;
}

.nightly-rate-details em {
  font-style: normal;
  text-align: right;
}

.breakfast-total-note {
  color: var(--green-dark);
  font-weight: 800;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.meal-plan-picker {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  border: 0;
}

.meal-plan-picker legend {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.checkout-form .meal-plan-option {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 11px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-form .meal-plan-option:hover {
  border-color: rgba(99, 181, 31, 0.48);
  transform: translateY(-1px);
}

.checkout-form .meal-plan-option.is-selected {
  background: linear-gradient(90deg, rgba(99, 181, 31, 0.11), rgba(99, 181, 31, 0.03));
  border-color: rgba(99, 181, 31, 0.72);
  box-shadow: 0 10px 24px rgba(83, 172, 20, 0.1);
}

.meal-plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.meal-plan-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green-dark);
  background: #f1faea;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 7px;
}

.meal-plan-icon svg {
  width: 19px;
  height: 19px;
}

.meal-plan-copy {
  min-width: 0;
}

.meal-plan-copy strong,
.meal-plan-copy small {
  display: block;
}

.meal-plan-copy strong {
  color: var(--ink);
  font-size: 12px;
}

.meal-plan-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.meal-plan-rate + small {
  display: none;
}

.meal-plan-option > b {
  color: var(--green-dark);
  font-size: 11px;
  line-height: 1.25;
  text-align: right;
}

.trip-meal-plan {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 6px 0 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.trip-meal-plan svg {
  width: 16px;
  height: 16px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
}

.checkout-form input,
.checkout-form textarea {
  padding: 11px 12px;
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-login-gate {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(99, 181, 31, 0.11), rgba(44, 160, 156, 0.08)),
    #fbfefa;
  border: 1px solid rgba(99, 181, 31, 0.26);
  border-radius: 8px;
}

.checkout-login-gate::after {
  content: "";
  position: absolute;
  inset: auto -42px -62px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(99, 181, 31, 0.2), transparent 68%);
  pointer-events: none;
}

.checkout-login-gate span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-login-gate h3,
.checkout-login-gate p {
  position: relative;
  margin: 0;
}

.checkout-login-gate h3 {
  font-size: 22px;
}

.checkout-login-gate p {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-login-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.booking-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.booking-results {
  gap: 18px;
}

.booking-layout .ota-room-card {
  grid-template-columns: minmax(230px, 0.85fr) minmax(220px, 1fr) minmax(185px, 0.72fr);
  align-items: stretch;
  gap: 18px;
  padding: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(36, 47, 31, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(31, 40, 31, 0.08);
}

.booking-layout .ota-room-card.is-selected {
  border-color: rgba(99, 181, 31, 0.52);
  box-shadow: 0 20px 52px rgba(57, 139, 21, 0.14);
}

.booking-layout .ota-room-card > img {
  height: 100%;
  min-height: 218px;
  border-radius: 12px;
}

.booking-layout .ota-room-main {
  gap: 12px;
  padding: 8px 0;
}

.booking-layout .ota-room-title h2 {
  max-width: 300px;
  font-size: 22px;
  line-height: 1.08;
}

.booking-layout .ota-room-main p {
  font-size: 12px;
  line-height: 1.55;
}

.booking-layout .room-facts {
  grid-template-columns: 1fr;
  gap: 9px;
}

.booking-layout .room-facts span {
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
}

.booking-layout .room-facts .room-facility-icons {
  display: flex;
  gap: 8px;
  min-height: 34px;
  padding: 0;
}

.booking-layout .room-facility-icons svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  background: #f4f9f1;
  border-color: #dfead8;
}

.booking-layout .ota-price-box {
  justify-items: stretch;
  gap: 9px;
  padding: 18px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(246, 250, 242, 0.98), rgba(255, 255, 255, 0.96));
  border: 0;
  border-radius: 12px;
}

.booking-layout .ota-price-box > strong {
  justify-content: flex-start;
  font-size: 24px;
}

.booking-layout .ota-price-box .price-tax-note {
  max-width: none;
  padding: 8px 0;
  background: transparent;
  border: 0;
  font-size: 9px;
}

.booking-layout .ota-price-box .btn {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border-radius: 7px;
}

.booking-checkout-panel {
  gap: 18px;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(31, 40, 31, 0.1);
}

.booking-checkout-panel .checkout-heading {
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.booking-checkout-panel .checkout-heading h2 {
  font-size: 26px;
  line-height: 1.05;
}

.booking-checkout-panel .checkout-heading p {
  font-size: 11px;
}

.booking-checkout-panel .checkout-step {
  color: #8a5b00;
  background: #fff7d6;
  border-color: #ebd06c;
}

.checkout-illustration {
  display: grid;
  place-items: center;
  min-height: 158px;
  margin: -4px 0 2px;
  background:
    radial-gradient(circle at 28% 42%, rgba(99, 181, 31, 0.14), transparent 22%),
    radial-gradient(circle at 72% 38%, rgba(45, 166, 154, 0.1), transparent 20%),
    linear-gradient(180deg, #fbfefa, #f7fbf3);
  border: 1px solid rgba(99, 181, 31, 0.12);
  border-radius: 12px;
}

.checkout-illustration span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #2b9a30);
  border: 8px solid #edf8e7;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(64, 154, 28, 0.22);
}

.checkout-illustration svg {
  width: 36px;
  height: 36px;
}

.checkout-assurance-list {
  display: grid;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.checkout-assurance-list span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 11px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 231, 223, 0.82);
}

.checkout-assurance-list span:last-child {
  border-bottom: 0;
}

.checkout-assurance-list svg {
  grid-row: 1 / span 2;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  color: var(--green-dark);
}

.checkout-assurance-list strong {
  grid-column: 2;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.25;
}

.checkout-assurance-list small {
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.booking-checkout-panel > .muted-copy {
  padding: 16px;
  color: #5e6871;
  background:
    linear-gradient(135deg, rgba(99, 181, 31, 0.06), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(99, 181, 31, 0.18);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.checkout-help-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  color: var(--ink);
  background: #f8fbf5;
  border: 1px solid rgba(99, 181, 31, 0.2);
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-help-link:hover {
  border-color: rgba(99, 181, 31, 0.42);
  box-shadow: 0 14px 30px rgba(52, 111, 28, 0.12);
  transform: translateY(-1px);
}

.checkout-help-link > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green-dark);
  background: #edf8e7;
  border-radius: 10px;
}

.checkout-help-link > span svg {
  width: 20px;
  height: 20px;
}

.checkout-help-link strong {
  display: grid;
  gap: 2px;
  font-size: 11px;
  line-height: 1.2;
}

.checkout-help-link small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.checkout-help-link > svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.muted-copy,
.booking-empty p {
  color: var(--muted);
  line-height: 1.6;
}

.booking-empty {
  padding: 28px;
}

.rooms-page {
  width: min(1240px, calc(100% - 40px));
}

.rooms-filter {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.rooms-filter .availability-submit {
  align-self: center;
  min-width: 190px;
  min-height: 46px;
  padding: 0 20px;
  margin-inline-start: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.rooms-catalog {
  display: grid;
  gap: 22px;
}

.blog-page {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0 84px;
}

.blog-masthead {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #11221a;
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(21, 36, 27, 0.18);
}

.blog-masthead::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 20, 15, 0.92) 0%, rgba(8, 20, 15, 0.68) 48%, rgba(8, 20, 15, 0.12) 78%),
    linear-gradient(0deg, rgba(8, 20, 15, 0.58), transparent 48%);
  pointer-events: none;
}

.blog-masthead-bg {
  position: absolute;
  inset: -20px;
  background-image: var(--blog-cover);
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  animation: blog-cover-drift 18s ease-in-out infinite alternate;
}

@keyframes blog-cover-drift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

.blog-masthead-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 68%);
  padding: 70px 64px 150px;
}

.blog-masthead .section-label {
  color: #a5ef6b;
}

.blog-masthead h1 {
  max-width: 700px;
  margin: 12px 0 20px;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.98;
}

.blog-masthead-copy > p:last-child {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.blog-masthead-feature {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  width: min(440px, 40%);
  gap: 12px;
  padding: 26px 30px;
  color: #fff;
  background: rgba(10, 25, 18, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease;
}

.blog-masthead-feature:hover {
  background: rgba(19, 48, 27, 0.92);
}

.blog-masthead-feature strong {
  font-size: 24px;
  line-height: 1.14;
}

.blog-masthead-feature > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.blog-masthead-feature svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.blog-masthead-feature:hover svg {
  transform: translate(3px, -3px);
}

.blog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}

.blog-intro h1 {
  max-width: 850px;
  margin: 8px 0 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.blog-intro > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 22px 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.blog-filters a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-filters a:hover,
.blog-filters a.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.blog-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  min-height: 470px;
  overflow: hidden;
  color: #fff;
  background: #182019;
  border-radius: 8px;
  box-shadow: 0 30px 74px rgba(27, 37, 29, 0.18);
}

.blog-featured::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 46%, rgba(99, 181, 31, 0.1) 46% 62%, transparent 62%),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, 0.025) 28px 30px);
}

.blog-featured-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.blog-featured-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(24, 32, 25, 0.86));
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.055);
}

.blog-featured-media > span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 7px 11px;
  color: #1b2819;
  background: #a1f65e;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-featured-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.blog-category {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--green-dark);
  background: #eff9e8;
  border: 1px solid rgba(99, 181, 31, 0.2);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-category.promo {
  color: #925b00;
  background: #fff4da;
  border-color: rgba(210, 143, 29, 0.24);
}

.blog-featured .blog-category {
  color: #caff9f;
  background: rgba(99, 181, 31, 0.14);
  border-color: rgba(160, 241, 94, 0.26);
}

.blog-featured .blog-category.promo {
  color: #ffd98b;
  background: rgba(210, 143, 29, 0.14);
  border-color: rgba(255, 217, 139, 0.25);
}

.blog-featured h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.blog-featured p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.blog-featured-footer small {
  color: rgba(255, 255, 255, 0.56);
}

.blog-featured-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.blog-featured-footer svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.blog-featured:hover .blog-featured-footer svg {
  transform: translateX(4px);
}

.blog-feed,
.blog-related {
  margin-top: 44px;
}

.blog-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blog-section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.blog-section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.65;
}

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

.blog-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(30, 38, 25, 0.065);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card:hover {
  border-color: rgba(99, 181, 31, 0.42);
  box-shadow: 0 24px 52px rgba(30, 38, 25, 0.12);
  transform: translateY(-6px);
}

.blog-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-card > .blog-card-media {
  padding: 0;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.045);
}

.blog-card-media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  color: #16300d;
  background: #a8f66b;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-media > span svg {
  width: 14px;
  height: 14px;
}

.blog-card > div:last-child {
  padding: 22px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-meta time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.blog-card h3 {
  margin: 17px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.blog-card p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card small {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  color: var(--green-dark);
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.blog-card small svg {
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}

.blog-empty {
  display: grid;
  justify-items: center;
  padding: 64px 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.blog-empty svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.blog-empty h2 {
  margin: 14px 0 5px;
  color: var(--ink);
}

.blog-empty p {
  margin: 0;
}

.blog-detail {
  padding-top: 10px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.blog-back-link svg {
  width: 17px;
  height: 17px;
}

.blog-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.blog-detail-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

.blog-detail-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.blog-meta svg {
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}

.blog-meta span {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
}

.blog-detail-media {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(30, 38, 25, 0.16);
}

.blog-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.blog-article-body {
  max-width: 780px;
  margin: 54px auto 0;
  color: #424b54;
  font-size: 18px;
  line-height: 1.85;
}

.blog-article-body p {
  margin: 0 0 24px;
}

.blog-article-cta {
  margin-top: 12px;
}

.blog-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .blog-intro,
  .blog-featured,
  .blog-detail-head {
    grid-template-columns: 1fr;
  }

  .blog-masthead-copy {
    width: min(760px, 88%);
    padding: 58px 44px 170px;
  }

  .blog-masthead-feature {
    width: min(520px, 62%);
  }

  .blog-intro {
    gap: 20px;
  }

  .blog-featured {
    min-height: 0;
  }

  .blog-featured-media {
    min-height: 330px;
  }

  .blog-featured-media::after {
    background: linear-gradient(0deg, rgba(24, 32, 25, 0.72), transparent 52%);
  }

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

  .blog-detail-media,
  .blog-detail-media img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .blog-page {
    width: min(100% - 28px, 1180px);
    padding-top: 86px;
  }

  .blog-masthead {
    min-height: 620px;
  }

  .blog-masthead::after {
    background:
      linear-gradient(180deg, rgba(8, 20, 15, 0.6), rgba(8, 20, 15, 0.88) 68%),
      linear-gradient(90deg, rgba(8, 20, 15, 0.5), transparent);
  }

  .blog-masthead-copy {
    width: 100%;
    padding: 42px 24px 215px;
  }

  .blog-masthead h1 {
    font-size: 42px;
    line-height: 1;
  }

  .blog-masthead-copy > p:last-child {
    font-size: 15px;
  }

  .blog-masthead-feature {
    width: 100%;
    padding: 22px 24px;
    border-left: 0;
  }

  .blog-intro {
    padding-top: 20px;
  }

  .blog-intro h1,
  .blog-detail-copy h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .blog-featured-media {
    min-height: 260px;
  }

  .blog-featured-copy {
    padding: 26px 22px;
  }

  .blog-featured h2 {
    font-size: 34px;
  }

  .blog-featured-footer,
  .blog-section-heading {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-media {
    height: 240px;
  }

  .blog-detail-head {
    gap: 28px;
  }

  .blog-detail-media,
  .blog-detail-media img {
    min-height: 280px;
  }

  .blog-article-body {
    margin-top: 36px;
    font-size: 16px;
  }
}

.room-detail-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 260px;
  gap: 24px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.room-detail-card:hover {
  border-color: rgba(99, 181, 31, 0.45);
  box-shadow: 0 22px 54px rgba(39, 49, 35, 0.13);
  transform: translateY(-3px);
}

.room-detail-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.room-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.room-detail-card:hover .room-detail-media img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.room-detail-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 10px 0;
}

.room-detail-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.room-detail-copy p:not(.section-label) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.nightly-breakdown {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 14px;
  background: #f8fbf5;
  border: 1px solid rgba(99, 181, 31, 0.18);
  border-radius: 8px;
}

.nightly-breakdown span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nightly-breakdown strong {
  color: var(--green-dark);
}

.room-detail-price {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 10px;
  padding-left: 22px;
  text-align: right;
  border-left: 1px solid var(--line);
}

.room-detail-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.room-detail-price strong {
  color: var(--green-dark);
  font-size: 28px;
}

.payment-lookup {
  width: min(520px, 100%);
}

.payment-checkout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.payment-checkout .checkout-card {
  position: relative;
  top: auto;
  overflow: hidden;
}

.payment-summary-card {
  position: sticky !important;
  top: 108px !important;
  gap: 18px;
  background:
    linear-gradient(160deg, rgba(237, 248, 231, 0.95), rgba(255, 255, 255, 0.98) 48%),
    #fff;
  border-color: rgba(99, 181, 31, 0.26);
}

.payment-summary-card::before,
.payment-method-card::before,
.payment-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #94d64a, var(--gold));
}

.payment-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.payment-card-head h2 {
  margin-top: 3px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.15;
}

.payment-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-dark);
  background: #edf8e7;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 8px;
}

.payment-icon svg {
  width: 23px;
  height: 23px;
}

.payment-stay-box,
.payment-total-box,
.payment-status-strip {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(99, 181, 31, 0.18);
  border-radius: 8px;
}

.payment-stay-box strong {
  font-size: 18px;
  line-height: 1.35;
}

.payment-stay-box span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.payment-stay-box svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.payment-total-box {
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 0;
  padding: 6px 0;
}

.payment-total-box .payment-line-label,
.payment-status-strip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.payment-total-box .payment-line-label {
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid rgba(99, 181, 31, 0.16);
}

.payment-total-box .payment-line-label em {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 6px;
  color: var(--green-dark);
  background: #edf8e7;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
}

.payment-total-box .payment-line-value {
  justify-self: end;
  padding: 13px 18px 13px 10px;
  border-bottom: 1px solid rgba(99, 181, 31, 0.16);
  color: var(--green-dark);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.05;
  text-align: right;
  white-space: nowrap;
}

.payment-summary-total {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 14px;
  margin: 12px 14px 0;
  padding: 15px 16px;
  border-radius: 8px;
}

.payment-summary-total span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-summary-total b {
  justify-self: end;
  font-size: clamp(23px, 2.8vw, 30px);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.payment-summary-grand {
  color: #fff;
  background: linear-gradient(135deg, #1d252b, #29333a);
  box-shadow: 0 16px 34px rgba(29, 37, 43, 0.16);
}

.payment-summary-grand b {
  color: #fff;
}

.payment-summary-deposit {
  color: #252b30;
  background: #f2faec;
  border: 1px solid rgba(99, 181, 31, 0.22);
  margin-top: 10px;
}

.payment-summary-deposit b {
  color: var(--green-dark);
}

.payment-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #1d252b;
  border-color: #1d252b;
}

.payment-status-strip span {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.payment-status-strip small {
  color: rgba(255, 255, 255, 0.72);
}

.payment-workspace {
  display: grid;
  gap: 22px;
}

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

.payment-method-card,
.payment-proof-card {
  gap: 18px;
  border-color: rgba(36, 47, 31, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.payment-method-card:hover,
.payment-proof-card:hover {
  border-color: rgba(99, 181, 31, 0.38);
  box-shadow: 0 24px 54px rgba(36, 47, 31, 0.13);
  transform: translateY(-2px);
}

.bank-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #f8fbf5;
  border: 1px solid rgba(99, 181, 31, 0.2);
  border-radius: 8px;
}

.bank-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-box strong {
  font-size: 20px;
}

.bank-box p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.gateway-warning {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: #7b3417;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
}

.gateway-warning.payment-unavailable {
  gap: 10px;
  color: #59421b;
  background: linear-gradient(135deg, #fff9ed, #fffdf8);
  border-color: rgba(217, 160, 58, 0.42);
}

.gateway-warning strong {
  color: #9a3412;
}

.gateway-warning.payment-unavailable strong {
  color: #6f4b06;
  font-size: 18px;
}

.gateway-warning span {
  color: #7c4a24;
  line-height: 1.55;
}

.gateway-warning.payment-unavailable span {
  color: #5f4b2b;
}

.gateway-warning small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #6f4b06;
  background: rgba(217, 160, 58, 0.12);
  border: 1px solid rgba(217, 160, 58, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.payment-disabled-btn,
.payment-disabled-btn:disabled {
  color: #6d7780;
  background: #eef2ec;
  border: 1px solid #dfe7da;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.payment-disabled-btn svg {
  color: #7a858c;
}

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

.proof-form-grid label {
  min-width: 0;
}

.proof-upload-field {
  grid-column: 1 / -1;
}

.proof-upload-field input[type="file"] {
  padding: 13px;
  background: #f8fbf5;
  border: 1px dashed rgba(99, 181, 31, 0.55);
}

.proof-upload-field small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.proof-upload-field small svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.payment-proof-card > .btn,
.gateway-card .btn {
  justify-content: center;
  width: 100%;
  min-height: 54px;
}

.payment-proof-card > .btn svg,
.gateway-card .btn svg {
  width: 18px;
  height: 18px;
}

.payment-proof {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-page {
  width: min(1360px, calc(100% - 64px));
}

.payment-page .booking-hero {
  margin-bottom: 28px;
}

.payment-page .booking-hero h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.payment-page .booking-hero p:not(.section-label) {
  max-width: 720px;
  font-size: 17px;
}

.payment-page .checkout-card {
  border-color: rgba(31, 39, 34, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(30, 39, 31, 0.08);
}

.payment-page .payment-checkout {
  grid-template-columns: minmax(330px, 410px) minmax(0, 1fr);
  gap: 28px;
}

.payment-page .payment-summary-card {
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(99, 181, 31, 0.22);
}

.payment-page .payment-method-card,
.payment-page .payment-proof-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
}

.payment-page .payment-card-head {
  align-items: center;
  gap: 16px;
}

.payment-page .payment-card-head h2 {
  margin: 2px 0 0;
  color: #182027;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.06;
}

.payment-page .payment-summary-card .payment-card-head h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.payment-page .payment-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #eef9e8, #fbfff8);
  border-color: rgba(99, 181, 31, 0.28);
  border-radius: 10px;
}

.payment-page .payment-stay-box {
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: #fff;
  border-color: rgba(30, 40, 33, 0.12);
}

.payment-page .payment-stay-box img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(26, 36, 26, 0.12);
}

.payment-page .payment-stay-box > div {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.payment-page .payment-stay-box strong {
  color: #182027;
  font-size: 17px;
}

.payment-page .payment-stay-box span {
  font-size: 13px;
  font-weight: 700;
}

.payment-page .payment-total-box {
  background: #fff;
  border-color: rgba(30, 40, 33, 0.12);
}

.payment-page .payment-total-box .payment-line-label {
  color: #66707a;
  font-size: 12px;
  line-height: 1.2;
  text-transform: none;
}

.payment-page .payment-total-box .payment-line-value {
  color: #12191f;
  font-size: 16px;
  font-weight: 900;
}

.payment-page .payment-total-box .payment-line-label em {
  margin-left: 6px;
  color: var(--green-dark);
  font-size: 11px;
}

.payment-page .payment-summary-total {
  gap: 10px;
  margin: 12px 14px 0;
  padding: 16px 18px;
  border-radius: 8px;
}

.payment-page .payment-summary-total span {
  font-size: 13px;
  text-transform: none;
}

.payment-page .payment-summary-total b {
  font-size: clamp(24px, 2.8vw, 31px);
}

.payment-page .payment-summary-grand {
  background: linear-gradient(135deg, #043f2b, #0b5c3b);
  box-shadow: 0 18px 34px rgba(4, 63, 43, 0.18);
}

.payment-page .payment-summary-deposit {
  background: linear-gradient(135deg, #f4fbef, #fbfff8);
}

.payment-page .payment-status-strip {
  padding: 16px 18px;
  background: #fff;
  border-color: rgba(30, 40, 33, 0.12);
}

.payment-page .payment-status-strip small {
  color: #66707a;
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.payment-page .payment-status-strip span {
  padding: 8px 13px;
  color: #8a5400;
  background: #fff8e6;
  border: 1px solid #ffe2a8;
  border-radius: 8px;
  font-size: 14px;
}

.payment-page .payment-status-strip span.unpaid,
.payment-page .payment-status-strip span.pending {
  color: #c82424;
  background: #fff1f1;
  border-color: #ffd5d5;
}

.payment-page .payment-status-strip span.paid,
.payment-page .payment-status-strip span.awaiting_verification {
  color: var(--green-dark);
  background: #f0fae9;
  border-color: #d6efc7;
}

.payment-security-note {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #4c5660;
  background: #fff;
  border: 1px solid rgba(30, 40, 33, 0.1);
  border-radius: 10px;
}

.payment-security-note svg {
  width: 32px;
  height: 32px;
  color: var(--green-dark);
}

.payment-security-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.payment-page .payment-method-grid {
  gap: 24px;
}

.payment-page .bank-box {
  gap: 13px;
  padding: 22px;
  background: linear-gradient(135deg, #fbfff8, #f8fbf5);
  border-color: rgba(99, 181, 31, 0.25);
}

.payment-page .bank-box span {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.payment-page .bank-box strong {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(99, 181, 31, 0.25);
  font-size: 18px;
}

.payment-page .bank-box p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin-top: 2px;
}

.payment-page .bank-box p::before {
  content: "i";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--green-dark);
  border: 1px solid rgba(99, 181, 31, 0.7);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.payment-page .gateway-warning.payment-unavailable {
  padding: 22px;
  background: linear-gradient(135deg, #fff8ed, #fffdf8);
  border-color: rgba(217, 160, 58, 0.46);
}

.payment-page .gateway-warning.payment-unavailable strong {
  font-size: 16px;
}

.payment-page .gateway-warning small {
  margin-top: 8px;
}

.payment-page .payment-disabled-btn,
.payment-page .payment-disabled-btn:disabled {
  min-height: 48px;
  color: #7b8490;
  background: linear-gradient(180deg, #f4f6f8, #eef1f3);
}

.payment-page .payment-proof-card {
  border-top-color: rgba(217, 160, 58, 0.5);
}

.payment-page .proof-form-grid {
  gap: 16px 22px;
}

.payment-page .proof-upload-field {
  gap: 8px;
}

.proof-upload-drop {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(99, 181, 31, 0.04), rgba(255, 255, 255, 0.92));
  border: 1px dashed rgba(99, 181, 31, 0.62);
  border-radius: 10px;
  cursor: pointer;
}

.proof-upload-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.proof-upload-drop svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--green-dark);
  background: #eef9e8;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 50%;
}

.proof-upload-drop strong {
  color: #182027;
  font-size: 14px;
}

.proof-upload-drop small {
  color: #66707a;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .payment-page {
    width: min(100% - 40px, 900px);
  }

  .payment-page .payment-checkout {
    grid-template-columns: 1fr;
  }

  .payment-page .payment-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .payment-page {
    width: min(100% - 28px, 560px);
  }

  .payment-page .booking-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
  }

  .payment-page .booking-hero p:not(.section-label) {
    font-size: 14px;
  }

  .payment-page .payment-summary-card,
  .payment-page .payment-method-card,
  .payment-page .payment-proof-card {
    padding: 16px;
  }

  .payment-page .payment-card-head h2 {
    font-size: 24px;
  }

  .payment-page .payment-summary-card .payment-card-head h2 {
    font-size: 16px;
  }

  .payment-page .payment-icon {
    width: 44px;
    height: 44px;
  }

  .payment-page .payment-stay-box {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .payment-page .payment-stay-box img {
    width: 86px;
    height: 96px;
  }

  .payment-page .payment-stay-box strong {
    font-size: 15px;
  }

  .payment-page .payment-stay-box span {
    font-size: 11px;
  }

  .payment-page .payment-total-box {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .payment-page .payment-total-box .payment-line-label {
    padding: 11px 8px 11px 12px;
    font-size: 11px;
  }

  .payment-page .payment-total-box .payment-line-value {
    padding: 11px 12px 11px 8px;
    font-size: 15px;
  }

  .payment-page .payment-summary-total {
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    margin: 10px 8px 0;
    padding: 14px;
  }

  .payment-page .payment-summary-total span {
    font-size: 12px;
  }

  .payment-page .payment-summary-total b {
    justify-self: end;
    font-size: 24px;
    text-align: right;
  }

  .payment-page .payment-summary-deposit b {
    font-size: 23px;
  }

  .payment-page .payment-status-strip {
    padding: 13px 14px;
  }

  .payment-security-note {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 14px;
  }

  .payment-security-note svg {
    width: 28px;
    height: 28px;
  }

  .proof-upload-drop {
    min-height: 112px;
    padding: 18px 12px;
  }
}

.guest-trip-list {
  display: grid;
  gap: 18px;
}

.guest-dashboard-page {
  width: min(1220px, calc(100% - 48px));
}

.trips-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
  padding: 10px 0 0;
}

.trips-hero-copy h1 {
  margin: 4px 0 8px;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
}

.trips-hero-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.trips-account-summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 14px 15px;
  background: #fbfdf9;
  border: 1px solid #d7e7cc;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(29, 50, 24, 0.08);
}

.trips-account-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #70c72d, #318d18);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.trips-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trips-account-summary > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.trips-account-summary small {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trips-account-summary strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trips-account-summary span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trips-account-summary > a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green-dark);
  background: #f3f8ef;
  border: 1px solid #dce9d3;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.trips-account-summary > a:hover {
  color: #fff;
  background: var(--green-dark);
  transform: rotate(8deg);
}

.trips-account-summary svg {
  width: 17px;
  height: 17px;
}

.claim-booking-card {
  display: grid;
  grid-template-columns: 48px minmax(220px, 0.72fr) minmax(310px, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
  padding: 16px 18px;
  background: #f8fbf6;
  border: 1px solid #d8e8ce;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(33, 54, 29, 0.07);
}

.claim-booking-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #cfe4bf;
  border-radius: 8px;
}

.claim-booking-icon svg {
  width: 20px;
  height: 20px;
}

.claim-booking-copy {
  display: grid;
  gap: 3px;
}

.claim-booking-copy strong {
  color: var(--ink);
  font-size: 14px;
}

.claim-booking-copy span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.claim-booking-card label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.claim-booking-card label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-booking-card input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d6dfd1;
  border-radius: 6px;
  outline: 0;
  font-weight: 800;
}

.claim-booking-card button {
  min-width: 166px;
  min-height: 44px;
  gap: 7px;
}

.claim-booking-card button svg {
  width: 17px;
  height: 17px;
}

.trips-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 8px 0 4px;
}

.trips-list-header h2 {
  margin: 4px 0 0;
  font-size: 28px;
}

.trips-list-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  align-items: stretch;
  gap: 12px;
}

.trips-list-stats span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  min-width: 138px;
  padding: 14px 16px;
  color: #56606d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(33, 54, 29, 0.06);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.trips-list-stats svg {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  padding: 11px;
  color: var(--green-dark);
  background: #edf8e8;
  border-radius: 8px;
}

.trips-list-stats strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.trips-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  min-height: 360px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce5d7;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(27, 43, 24, 0.09);
}

.trips-empty-content {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 42px 46px;
}

.trips-empty-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--green-dark);
  background: #eff9e8;
  border: 1px solid #cfe4bf;
  border-radius: 8px;
}

.trips-empty-icon svg {
  width: 25px;
  height: 25px;
}

.trips-empty h2 {
  max-width: 520px;
  margin: 0;
  font-size: 42px;
  line-height: 1;
}

.trips-empty-content > p:not(.section-label) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trips-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.trips-empty-actions .btn {
  gap: 8px;
}

.trips-empty-actions svg {
  width: 17px;
  height: 17px;
}

.trips-empty-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.trips-empty-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.trips-empty-benefits svg {
  width: 15px;
  height: 15px;
  color: var(--green-dark);
}

.trips-empty-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #173221;
}

.trips-empty-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(125deg, rgba(12, 27, 18, 0.06), rgba(12, 27, 18, 0.48)),
    var(--trips-empty-image) center / cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.trips-empty:hover .trips-empty-media::before {
  transform: scale(1.045);
}

.trips-empty-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(transparent, rgba(9, 22, 14, 0.68));
}

.trips-empty-media span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-trip-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: center;
  min-height: 210px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(30, 44, 27, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.guest-trip-card:hover {
  border-color: rgba(99, 181, 31, 0.3);
  box-shadow: 0 24px 62px rgba(30, 44, 27, 0.12);
  transform: translateY(-3px);
}

.guest-trip-media {
  position: relative;
  align-self: stretch;
  min-height: 168px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4eb;
}

.guest-trip-media img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guest-trip-card:hover .guest-trip-media img {
  transform: scale(1.045);
}

.guest-trip-media .trip-meal-plan {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  margin: 0;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(135deg, #42a915, #27880c);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(35, 86, 15, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.guest-trip-media .trip-meal-plan svg {
  width: 14px;
  height: 14px;
}

.guest-trip-main {
  min-width: 0;
}

.guest-trip-card h2 {
  max-width: 520px;
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.trip-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin: 0;
  padding: 0 12px;
  color: var(--green-dark);
  background: #edf9e8;
  border: 1px solid #d5ecca;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.trip-code-pill svg {
  width: 12px;
  height: 12px;
}

.trip-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #56606d;
  font-size: 13px;
  font-weight: 700;
}

.trip-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trip-meta-row svg {
  width: 15px;
  height: 15px;
  color: var(--green-dark);
}

.guest-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.guest-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #edf8e7;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}

.guest-status.pending,
.guest-status.unpaid,
.guest-status.payment {
  color: #8a5a08;
  background: #fff7e6;
}

.guest-status.cancelled,
.guest-status.rejected,
.guest-status.refunded {
  color: #a33a24;
  background: #fff0ed;
}

.guest-status.checked_out,
.guest-status.paid,
.guest-status.verified {
  color: var(--green-dark);
  background: #edf8e7;
}

.guest-status.checked_in,
.guest-status.confirmed {
  color: #17628a;
  background: #eaf7ff;
}

.guest-status.proof {
  color: #394049;
  background: #f6f8f3;
}

.guest-trip-price {
  display: grid;
  gap: 7px;
  align-content: center;
  justify-items: end;
  min-height: 160px;
  text-align: right;
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.guest-trip-price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.guest-trip-price strong {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.guest-trip-price .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 12px;
}

.guest-trip-price .btn svg {
  width: 15px;
  height: 15px;
}

.trip-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.trip-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.trip-detail-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(99, 181, 31, 0.22), transparent 28%),
    rgba(18, 24, 20, 0.54);
  backdrop-filter: blur(10px);
}

.trip-detail-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(88vh, 880px);
  overflow: auto;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  box-shadow: 0 38px 100px rgba(12, 18, 10, 0.34);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.24s ease;
}

.trip-detail-modal.is-open .trip-detail-dialog {
  transform: translateY(0) scale(1);
}

.trip-detail-hero {
  position: relative;
  min-height: 310px;
  padding: 38px 42px 32px;
  overflow: hidden;
  color: #fff;
  background: #162112;
  isolation: isolate;
}

.trip-detail-hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 10, 0.92) 0%, rgba(12, 18, 12, 0.78) 34%, rgba(36, 77, 22, 0.34) 68%, rgba(29, 58, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 13, 9, 0.1) 0%, rgba(9, 13, 9, 0.84) 100%),
    var(--trip-hero-image, url("assets/room-standard.jpg")) center / cover;
  transform: scale(1.04);
  transition: transform 0.55s ease;
  z-index: -2;
}

.trip-detail-modal.is-open .trip-detail-hero::before {
  transform: scale(1);
}

.trip-detail-hero::after {
  position: absolute;
  inset: auto -90px -130px auto;
  width: 320px;
  height: 320px;
  content: "";
  background:
    radial-gradient(circle, rgba(111, 199, 45, 0.16) 0 34%, transparent 35%),
    conic-gradient(from 145deg, rgba(255, 255, 255, 0), rgba(139, 214, 72, 0.35), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  z-index: -1;
}

.trip-detail-hero > * {
  position: relative;
  z-index: 1;
}

.trip-detail-hero h2 {
  max-width: 760px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.34);
}

.trip-detail-hero p:not(.section-label) {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
}

.trip-detail-hero .guest-status {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.trip-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.trip-detail-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 228, 216, 0.92);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(35, 45, 28, 0.07);
}

.trip-detail-panel.wide {
  grid-column: 1 / -1;
}

.trip-detail-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.trip-detail-panel-head svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.trip-detail-panel h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.detail-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding: 11px 0;
  border-bottom: 1px solid #edf0ea;
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
}

.detail-list.highlight dd {
  color: var(--green-dark);
  font-size: 18px;
}

.detail-list.compact {
  gap: 9px;
}

.proof-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
}

.proof-preview {
  margin: 0;
  overflow: hidden;
  background: #f7faf4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-preview img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.proof-preview figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.trip-detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 18px 20px;
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.status-main-card,
.status-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.status-main-card {
  padding: 28px;
}

.status-main-card h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.status-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: #394049;
  background: #f5faef;
  border: 1px solid rgba(99, 181, 31, 0.22);
  border-radius: 8px;
  line-height: 1.6;
}

.status-side-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 9px;
  padding: 24px;
}

.status-side-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-side-card strong {
  color: var(--green-dark);
  font-size: 24px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.profile-hero {
  max-width: 760px;
  margin-bottom: 30px;
}

.profile-hero h1 {
  font-size: clamp(44px, 5.4vw, 68px);
}

.profile-preview {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 22px;
  padding: 0 24px 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.profile-preview-accent {
  height: 84px;
  margin: 0 -24px -65px;
  background:
    linear-gradient(125deg, rgba(99, 181, 31, 0.92), rgba(41, 147, 142, 0.82)),
    var(--ink);
}

.profile-identity {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.profile-photo {
  width: 104px;
  height: 104px;
  border: 5px solid #fff;
  border-radius: 24px;
  font-size: 32px;
  box-shadow: 0 14px 34px rgba(22, 46, 29, 0.2);
}

.profile-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #f1faea;
  border: 1px solid #d6ebc6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.profile-status svg {
  width: 14px;
  height: 14px;
}

.profile-preview h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.profile-contact-list {
  display: grid;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-contact-list > span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.profile-contact-list svg {
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}

.profile-trip-link {
  width: 100%;
  gap: 8px;
}

.profile-trip-link svg {
  width: 17px;
  height: 17px;
}

.profile-form {
  position: static;
  display: grid;
  gap: 26px;
  padding: 30px;
}

.profile-form-header,
.profile-security-header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.profile-form-header h2,
.profile-security-header h3 {
  margin: 2px 0 5px;
  color: var(--ink);
  font-size: 26px;
}

.profile-security-header h3 {
  font-size: 20px;
}

.profile-form-header p:last-child,
.profile-security-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.profile-section-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green-dark);
  background: #f1faea;
  border: 1px solid #d4e9c3;
  border-radius: 8px;
}

.profile-section-icon svg {
  width: 21px;
  height: 21px;
}

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

.profile-fields-grid label {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.profile-fields-grid label > small {
  min-height: 17px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.profile-input {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 14px;
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 7px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.profile-input:focus-within {
  background: #fff;
  border-color: rgba(99, 181, 31, 0.78);
  box-shadow: 0 0 0 4px rgba(99, 181, 31, 0.1);
}

.profile-input.is-readonly {
  background: #f2f4f1;
}

.profile-input svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.profile-input input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.profile-input input::placeholder {
  color: #9ba39c;
}

.profile-file-input {
  width: 100%;
  min-height: 52px;
  padding: 7px;
  color: var(--muted);
  background: #fbfcfa;
  border: 1px dashed #cbd9c2;
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.profile-file-input::file-selector-button {
  min-height: 36px;
  margin-right: 10px;
  padding: 0 14px;
  color: var(--green-dark);
  background: #eff9e8;
  border: 1px solid #cfe4bf;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.profile-remove-photo {
  width: fit-content;
  padding: 10px 12px;
  background: #fff8f5;
  border: 1px solid #f1d3c8;
  border-radius: 6px;
}

.profile-security {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: #f7faf6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.profile-form-actions > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.profile-form-actions > span svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.profile-form-actions .btn {
  min-width: 190px;
  gap: 8px;
}

.profile-form-actions .btn svg {
  width: 17px;
  height: 17px;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.inline-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.form-divider {
  height: 1px;
  margin: 4px 0;
  background: var(--line);
}

@media (max-width: 720px) {
  .profile-page {
    width: min(100% - 28px, 1180px);
  }

  .profile-hero {
    margin-bottom: 22px;
  }

  .profile-hero h1 {
    font-size: 42px;
  }

  .profile-preview {
    padding-inline: 20px;
  }

  .profile-form {
    padding: 22px 18px;
  }

  .profile-fields-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-security {
    margin-inline: -18px;
    padding: 22px 18px;
  }

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

  .profile-form-actions .btn {
    width: 100%;
  }
}

@keyframes heroCinematicZoom {
  from {
    filter: saturate(1.05) contrast(1.03);
    transform: translate3d(0, var(--hero-parallax), 0) scale(1.12);
  }
  to {
    filter: saturate(1.18) contrast(1.08);
    transform: translate3d(-76px, calc(var(--hero-parallax) - 22px), 0) scale(1.24);
  }
}

@keyframes heroLightSweep {
  0%, 18% {
    opacity: 0;
    transform: translateX(-42%);
  }
  44%, 58% {
    opacity: 0.44;
  }
  100% {
    opacity: 0;
    transform: translateX(38%);
  }
}

@media (max-width: 1100px) {
  .booking-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .booking-card label {
    padding: 0;
    border-right: 0;
  }

  .booking-card > button {
    grid-column: span 2;
  }

  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid,
  .location-band {
    grid-template-columns: 1fr 1fr;
  }

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

  .ota-search,
  .booking-layout,
  .ota-room-card,
  .payment-layout,
  .claim-booking-card,
  .status-layout,
  .profile-layout,
  .room-detail-card,
  .trip-detail-grid,
  .proof-detail,
  .guest-trip-card {
    grid-template-columns: 1fr;
  }

  .payment-method-grid,
  .proof-form-grid {
    grid-template-columns: 1fr;
  }

  .ota-search,
  .checkout-card {
    position: static;
  }

  .booking-search .room-search-submit {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
  }

  .booking-layout {
    width: 100%;
    min-width: 0;
  }

  .booking-results {
    width: 100%;
    min-width: 0;
  }

  .booking-layout .ota-room-card {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    min-width: 0;
    padding: 14px;
  }

  .booking-layout .ota-room-card > img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .booking-layout .ota-room-main {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .booking-layout .ota-room-title h2 {
    max-width: none;
    font-size: clamp(22px, 6vw, 30px);
  }

  .booking-layout .ota-room-main p {
    max-width: none;
  }

  .booking-layout .room-facts {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .booking-layout .room-facts .room-fact-capacity {
    max-width: 100%;
  }

  .booking-layout .room-facts .room-facility-icons {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .booking-layout .ota-price-box {
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-left: 0;
  }

  .payment-summary-card {
    position: relative !important;
    top: auto !important;
  }

  .payment-summary-card .payment-card-head {
    gap: 12px;
  }

  .payment-summary-card .payment-icon {
    width: 42px;
    height: 42px;
  }

  .payment-summary-card .payment-card-head h2 {
    font-size: clamp(22px, 6vw, 28px);
    letter-spacing: 0;
  }

  .payment-total-box {
    grid-template-columns: minmax(120px, 0.92fr) minmax(0, 1.08fr);
    padding: 4px 0;
  }

  .payment-total-box .payment-line-label {
    padding: 12px 8px 12px 14px;
    font-size: 10px;
    line-height: 1.2;
  }

  .payment-total-box .payment-line-value {
    padding: 12px 14px 12px 8px;
    font-size: clamp(21px, 5.8vw, 24px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .payment-summary-total {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 7px;
    margin: 10px 10px 0;
    padding: 14px 16px;
  }

  .payment-summary-total span {
    font-size: 11px;
  }

  .payment-summary-total b {
    justify-self: start;
    font-size: clamp(26px, 7vw, 30px);
    text-align: left;
  }

  .payment-summary-deposit b {
    font-size: clamp(24px, 6.5vw, 29px);
  }

  .payment-status-strip {
    padding: 14px 16px;
  }

  .payment-status-strip span {
    font-size: 14px;
  }

  .payment-status-strip small {
    font-size: 10px;
  }

  .ota-price-box {
    justify-items: stretch;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .ota-price-box > strong {
    justify-content: flex-start;
  }

  .ota-price-box .price-tax-note {
    max-width: 320px;
    text-align: left;
  }

  .ota-price-box .btn {
    width: fit-content;
  }

  .guest-trip-price {
    justify-items: start;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .room-detail-price {
    justify-items: start;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .status-side-card {
    position: static;
  }

  .profile-preview {
    position: static;
  }

  .trip-detail-actions {
    flex-direction: column;
  }

  .trip-detail-actions .btn {
    width: 100%;
  }

  .footer-pattern {
    display: none;
  }

  .trips-hero {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }

  .claim-booking-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .claim-booking-card label,
  .claim-booking-card button {
    grid-column: 2;
  }

  .claim-booking-card button {
    justify-self: start;
  }

  .trips-empty {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (max-width: 720px) {
  .trip-detail-modal {
    align-items: end;
    padding: 12px;
  }

  .trip-detail-dialog {
    max-height: 90vh;
    border-radius: 14px 14px 10px 10px;
  }

  .trip-detail-hero {
    min-height: 260px;
    padding: 30px 22px 24px;
  }

  .trip-detail-hero::before {
    background:
      linear-gradient(180deg, rgba(9, 13, 9, 0.52) 0%, rgba(9, 13, 9, 0.9) 100%),
      var(--trip-hero-image, url("assets/room-standard.jpg")) center / cover;
  }

  .trip-detail-hero::after {
    width: 210px;
    height: 210px;
    right: -92px;
    bottom: -102px;
  }

  .trip-detail-hero h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.98;
  }

  .trip-detail-hero p:not(.section-label) {
    font-size: 13px;
    line-height: 1.45;
  }

  .trip-detail-grid {
    gap: 12px;
    padding: 12px;
  }

  .trip-detail-actions {
    padding: 0 12px 14px;
  }

  .detail-list div {
    display: grid;
    gap: 4px;
  }

  .detail-list dd {
    text-align: left;
  }

  .proof-preview img {
    height: 220px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav .mobile-account-link {
    display: block;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 520px;
    padding: 130px 22px 110px;
    border-radius: 0 0 0 48px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .booking-benefits,
  .accor-band,
  .greenkey-band,
  .rooms-section,
  .amenities-section,
  .gallery-section,
  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .booking-benefits {
    width: 96%;
    padding: 18px;
    border-radius: 0 0 8px 8px;
  }

  .accor-band,
  .greenkey-band {
    padding: 22px;
  }

  .greenkey-mark {
    width: 132px;
  }

  .accor-band {
    width: min(94%, 720px);
    gap: 16px;
    margin-top: 42px;
    padding: 0;
    min-height: 0;
  }

  .accor-showcase {
    grid-template-columns: 1fr;
  }

  .accor-media {
    min-height: 220px;
  }

  .accor-points {
    padding: 12px 18px;
  }

  .accor-copy h2 {
    max-width: 520px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .accor-copy-head {
    gap: 12px;
    margin-bottom: 12px;
  }

  .accor-copy-head img {
    width: 64px;
    max-height: 42px;
  }

  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
  }

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

  .guest-dashboard-page {
    width: min(100% - 28px, 720px);
  }

  .trips-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding-top: 10px;
  }

  .trips-hero-copy h1 {
    font-size: 50px;
  }

  .trips-account-summary {
    width: 100%;
    max-width: 430px;
  }

  .trips-empty {
    grid-template-columns: 1fr;
  }

  .trips-empty-media {
    min-height: 270px;
    grid-row: 1;
  }

  .trips-empty-content {
    padding: 34px;
  }

  .rooms-section.section {
    width: min(100% - 28px, 760px);
  }

  .rooms-section .section-heading {
    position: static;
    display: grid;
    align-items: start;
    justify-content: stretch;
  }

  .rooms-intro {
    max-width: 520px;
  }

  .rooms-side-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
  }

  .rooms-side-benefits article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .rooms-side-benefits i {
    width: 24px;
    height: 24px;
  }

  .rooms-section .room-track {
    grid-auto-columns: minmax(250px, 1fr);
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .rooms-section.section {
    width: min(100% - 20px, 560px);
  }

  .rooms-side-benefits {
    grid-template-columns: 1fr;
  }

  .rooms-section .room-track {
    grid-auto-columns: minmax(250px, 86vw);
    gap: 14px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .rooms-section .room-card {
    min-width: 250px;
    border-radius: 12px;
  }

  .room-card-media {
    margin: 0;
  }

  .rooms-section .room-card .room-card-media img {
    height: 138px;
  }

  .rooms-section .card-body {
    padding: 16px;
  }

  .rooms-section .card-body p {
    min-height: 0;
  }

  .room-meta-row {
    gap: 12px;
  }

  .room-amenity-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-bottom: 0;
  }

  .room-amenity-strip span {
    min-height: 48px;
    padding: 10px;
    background: #f8faf6;
    border: 1px solid rgba(222, 230, 220, 0.86);
    border-radius: 8px;
  }

  .room-card-tags span {
    width: 100%;
    justify-content: center;
  }

  .rooms-section [data-scroll-left] {
    left: -10px;
  }

  .rooms-section [data-scroll-right] {
    right: -10px;
  }

  .guest-dashboard-page {
    width: min(100% - 20px, 560px);
  }

  .trips-hero-copy h1 {
    font-size: 42px;
  }

  .trips-hero-copy > p:last-child {
    font-size: 14px;
  }

  .trips-account-summary {
    grid-template-columns: 46px minmax(0, 1fr) 36px;
    padding: 12px;
  }

  .trips-account-avatar {
    width: 46px;
    height: 46px;
  }

  .claim-booking-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .claim-booking-icon {
    width: 42px;
    height: 42px;
  }

  .claim-booking-card label,
  .claim-booking-card button {
    grid-column: 1 / -1;
  }

  .claim-booking-card button {
    width: 100%;
  }

  .trips-empty-content {
    padding: 28px 22px;
  }

  .trips-empty h2 {
    font-size: 34px;
  }

  .trips-empty-actions,
  .trips-empty-actions .btn {
    width: 100%;
  }

  .trips-empty-actions .btn {
    justify-content: center;
  }

  .trips-empty-benefits {
    display: grid;
  }

  .trips-empty-media {
    min-height: 220px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .rooms-filter {
    grid-template-columns: 1fr;
  }

  .rooms-hero {
    min-height: 280px;
    padding: 34px 22px;
  }

  .rooms-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .rooms-hero p:not(.section-label) {
    font-size: 15px;
  }

  .rooms-hero + .rooms-filter {
    margin-top: 16px;
  }

  .booking-image-hero + .booking-search {
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .rooms-filter .availability-submit {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
  }

  .room-select-menu {
    width: 100%;
  }

  .room-detail-media {
    min-height: 220px;
  }

  .nightly-breakdown span {
    display: grid;
  }

  .booking-card > button {
    grid-column: auto;
  }

  .booking-benefits,
  .feature-grid,
  .feature-card,
  .lead-hero,
  .lead-form-shell,
  .reservation-form,
  .location-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .feature-card img {
    min-height: 190px;
  }

  .lead-page {
    padding-top: 92px;
  }

  .lead-hero,
  .lead-form-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lead-page-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .lead-assurance {
    position: static;
  }

  .lead-preview {
    min-height: 360px;
  }

  .lead-hero-copy h1 {
    font-size: 44px;
  }

  .lead-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-form-footer .btn {
    width: 100%;
  }

  .feature-icon {
    right: 20px;
    bottom: 172px;
  }

  .room-track {
    grid-auto-columns: minmax(260px, 86vw);
  }

  [data-scroll-left] {
    left: 4px;
  }

  [data-scroll-right] {
    right: 4px;
  }
}

@media (max-width: 1100px) {
  .guest-trip-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .guest-trip-price {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    justify-items: start;
    align-items: center;
    min-height: 0;
    padding: 16px 0 0;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .trips-list-stats {
    width: 100%;
  }

  .guest-trip-card {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .guest-trip-media,
  .guest-trip-media img {
    min-height: 210px;
  }

  .guest-trip-price {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
  }

  .guest-trip-price .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .trips-list-stats {
    grid-template-columns: 1fr;
  }

  .trip-meta-row {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rooms-hero-image {
    animation: none;
    transform: scale(1.06);
  }

  .blog-masthead-bg {
    animation: none;
  }
}
