@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --sand: #f4efe6;
  --clay: #c8744f;
  --olive: #4d5a3d;
  --pine: #24352a;
  --charcoal: #1e1f1d;
  --mist: #f8f7f3;
  --card: #fffdf8;
  --line: #ddd5c8;
  --shadow: 0 10px 30px rgba(30, 31, 29, 0.12);
  --radius: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--charcoal);
  background: radial-gradient(circle at 10% 15%, #ffffff 0%, var(--sand) 35%, #efe8da 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 140, 102, 0.2), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(109, 138, 106, 0.22), transparent 38%),
    linear-gradient(135deg, #17251d 0%, #22372b 55%, #2c4938 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  color: #f7f7f3;
}

.loader-brand {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.02em;
}

.loader-dots {
  margin: 0.7rem auto 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.loader-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f9d1bb;
  opacity: 0.45;
  animation: loaderPulse 1.05s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

.loader-text {
  margin: 0;
  color: rgba(243, 245, 239, 0.9);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }

  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

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

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

.container {
  width: min(calc(100% - 2.2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(24, 38, 30, 0.92), rgba(37, 56, 45, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(18, 24, 20, 0.28);
}

.topbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 178, 150, 0.8), transparent);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.2rem;
}

.brand {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: #f6f4ee;
  transition: transform 0.25s ease, color 0.25s ease;
}

.brand::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 0;
  bottom: -2px;
  height: 2px;
  width: 42%;
  background: linear-gradient(90deg, var(--clay), transparent);
  transition: width 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
  color: #ffffff;
}

.brand:hover::after {
  width: 70%;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  padding: 0.24rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.nav-links a {
  position: relative;
  isolation: isolate;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(247, 246, 241, 0.9);
  padding: 0.48rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 4px;
  height: 2px;
  border-radius: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  z-index: -1;
}

.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav-links a.active,
.nav-links a:hover {
  border-color: rgba(255, 255, 255, 0.26);
}

.nav-links a.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow: 0 8px 14px rgba(20, 27, 22, 0.2);
}

.nav-links a.active::before {
  transform: scaleX(1);
  background: #ffd8c5;
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  font-weight: 700;
  color: #f9f8f3;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.menu-btn .menu-icon {
  width: 19px;
  height: 14px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn .menu-icon span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #f8f7f2;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
}

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

.menu-btn.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

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

.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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--pine);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  border-color: var(--pine);
  color: var(--pine);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(77, 90, 61, 0.88), rgba(36, 53, 42, 0.76)),
    url('https://images.unsplash.com/photo-1470246973918-29a93221c455?auto=format&fit=crop&w=1800&q=80') center/cover;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(200, 116, 79, 0.4);
  filter: blur(40px);
  border-radius: 50%;
  right: -100px;
  top: -70px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: end;
  color: #f7f7f3;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  opacity: 0.92;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: inherit;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.1rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--pine);
}

.lead {
  margin: 0 0 1.2rem;
  max-width: 60ch;
}

.hero-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(2px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.availability-widget {
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: end;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 36px rgba(20, 27, 22, 0.28);
}

.availability-widget label {
  color: #f7f8f1;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability-widget input,
.availability-widget select {
  border-color: rgba(255, 255, 255, 0.45);
  border-width: 1.5px;
  background: rgba(252, 252, 249, 0.97);
  min-height: 48px;
  border-radius: 12px;
  font-weight: 600;
  color: #273425;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.availability-widget input:focus,
.availability-widget select:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
  background: #ffffff;
}

.availability-widget .btn {
  min-height: 48px;
  width: 100%;
  padding-inline: 1rem;
  background: linear-gradient(140deg, #1f3227, #2f4a37);
  border-color: rgba(255, 255, 255, 0.2);
}

.availability-widget .btn:hover {
  box-shadow: 0 10px 24px rgba(17, 24, 19, 0.35);
}

.trust-strip {
  background: #f1ebdf;
  border-top: 1px solid #ded5c4;
  border-bottom: 1px solid #ded5c4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem 0;
}

.trust-grid p {
  margin: 0;
  text-align: center;
  font-size: 0.93rem;
  color: #374034;
}

.trust-grid strong {
  color: var(--pine);
}

.host-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.host-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 0.9rem;
}

.host-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(77, 90, 61, 0.25);
}

.proof-card {
  border-left: 4px solid var(--olive);
}

.metric {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.25rem;
  color: var(--olive);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--mist), #f1ebdf);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.45rem;
  color: var(--pine);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.room-card .photo {
  min-height: 180px;
  margin-bottom: 0.8rem;
}

.offer-card {
  border-left: 4px solid var(--clay);
}

.room-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.room-badges span {
  border: 1px solid rgba(77, 90, 61, 0.24);
  background: #f8f5ed;
  color: #2f3b30;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.room-card-enhanced {
  position: relative;
}

.room-tag {
  display: inline-flex;
  margin-bottom: 0.45rem;
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff8f3;
  background: linear-gradient(135deg, #b86443, #d3855f);
}

.rate-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin: 0.5rem 0 0.65rem;
}

.rate-line span {
  color: #4a5646;
  font-weight: 600;
  font-size: 0.92rem;
}

.mini-list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.mini-list li {
  color: #334132;
  font-size: 0.9rem;
}

.mini-list li::before {
  content: '✓ ';
  color: #4b7a50;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
}

.room-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.room-table th,
.room-table td {
  border-bottom: 1px solid #ddd5c8;
  text-align: left;
  padding: 0.78rem 0.7rem;
  vertical-align: top;
}

.room-table th {
  color: #243529;
  font-size: 0.94rem;
  font-weight: 800;
  background: #f4efe5;
}

.room-table td {
  color: #364134;
  font-size: 0.94rem;
}

.extras-card {
  border-left: 4px solid var(--clay);
}

.small-note {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: #4a5546;
}

.rooms-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1rem;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.35rem;
}

.step-item {
  border: 1px solid #d7cebf;
  border-radius: 12px;
  background: #fbf6ed;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.step-item span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f4737;
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 800;
}

.step-item p {
  margin: 0;
  color: #304030;
  font-weight: 700;
  font-size: 0.9rem;
}

.booking-layout {
  align-items: start;
}

.booking-form-card {
  padding: 1.25rem;
  border: 1px solid #d8cdba;
  background: linear-gradient(180deg, #fffdf8, #f8f2e7);
}

.booking-form-card h2 {
  margin-bottom: 0.95rem;
}

#booking-form {
  display: grid;
  gap: 0.95rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-grid > div {
  border: 1px solid #dbcdb9;
  border-radius: 12px;
  background: #fffefb;
  padding: 0.72rem 0.75rem 0.78rem;
}

.booking-grid > .full {
  padding: 0.82rem;
}

#booking-form label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4c5a4b;
  margin-bottom: 0.4rem;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
  border: 1.5px solid #ccbda8;
  border-radius: 10px;
  background: #ffffff;
  min-height: 46px;
  padding: 0.72rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#booking-form textarea {
  min-height: 110px;
}

#booking-form input::placeholder,
#booking-form textarea::placeholder {
  color: #8a9086;
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
  outline: none;
  border-color: #8f5a40;
  box-shadow: 0 0 0 3px rgba(199, 117, 79, 0.14);
  background: #fffdfa;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d4c8b5;
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  background: #faf5ec;
  font-size: 0.86rem;
  color: #324032;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.check-chip:hover {
  border-color: #c19a80;
  background: #fff8ef;
  transform: translateY(-1px);
}

.check-chip input {
  width: auto;
  margin: 0;
  accent-color: #2f4737;
}

.booking-actions {
  margin-top: 0.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.booking-actions .btn {
  min-width: 190px;
}

.booking-side {
  display: grid;
  gap: 0.9rem;
}

.booking-summary-card {
  border-top: 4px solid #c7754f;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  margin: 0.45rem 0;
  color: #3a4639;
}

.summary-row.total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #cfbea8;
  font-weight: 800;
}

.summary-row strong {
  color: #263627;
}

.booking-policy-card {
  border-left: 4px solid var(--olive);
}

.exp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin: 0.85rem 0 1.2rem;
}

.exp-chips span {
  border: 1px solid rgba(77, 90, 61, 0.24);
  background: #f8f4ea;
  color: #304031;
  border-radius: 999px;
  padding: 0.33rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.exp-card {
  border-top: 4px solid #d08a66;
}

.exp-meta {
  color: #435043;
  font-size: 0.92rem;
  margin: 0.35rem 0 0.9rem;
}

.timeline {
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 1rem;
}

.timeline-item {
  border: 1px solid #dacfbf;
  border-left: 4px solid #c77853;
  border-radius: 12px;
  padding: 0.72rem 0.84rem;
  background: #fffaf0;
}

.timeline-item span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7a4d35;
  margin-bottom: 0.28rem;
}

.timeline-item p {
  margin: 0;
  color: #334032;
}

.exp-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0 1.25rem;
}

.contact-trust-row span {
  border: 1px solid rgba(77, 90, 61, 0.24);
  background: #f8f4ea;
  color: #2f4030;
  border-radius: 999px;
  padding: 0.33rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-layout {
  align-items: start;
}

.contact-card,
.contact-form-card {
  border: 1px solid #d8cdba;
  background: linear-gradient(180deg, #fffdf8, #f8f2e7);
}

.contact-lines {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.contact-lines p {
  margin: 0;
  color: #344234;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form-grid > div {
  border: 1px solid #dbcdb9;
  border-radius: 12px;
  background: #fffefb;
  padding: 0.72rem 0.75rem 0.78rem;
}

.contact-form-grid > .full {
  padding: 0.82rem;
}

#contact-form {
  display: grid;
  gap: 0.95rem;
}

#contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4c5a4b;
  margin-bottom: 0.4rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  border: 1.5px solid #ccbda8;
  border-radius: 10px;
  background: #ffffff;
  min-height: 46px;
  padding: 0.72rem 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#contact-form textarea {
  min-height: 110px;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #8f5a40;
  box-shadow: 0 0 0 3px rgba(199, 117, 79, 0.14);
  background: #fffdfa;
}

.route-card {
  border-left: 4px solid var(--olive);
}

.photo {
  min-height: 220px;
  border-radius: 14px;
  border: 1px solid rgba(77, 90, 61, 0.25);
  background-size: cover;
  background-position: center;
}

.photo.room-1 {
  background-image: linear-gradient(30deg, rgba(36, 53, 42, 0.35), rgba(36, 53, 42, 0.08)),
    url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1300&q=80');
}

.photo.room-2 {
  background-image: linear-gradient(30deg, rgba(36, 53, 42, 0.3), rgba(36, 53, 42, 0.08)),
    url('https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1300&q=80');
}

.photo.room-3 {
  background-image: linear-gradient(30deg, rgba(36, 53, 42, 0.3), rgba(36, 53, 42, 0.08)),
    url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?auto=format&fit=crop&w=1300&q=80');
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  display: flex;
  gap: 0.6rem;
  margin: 0.55rem 0;
}

.list li::before {
  content: '•';
  color: var(--clay);
  font-weight: 800;
}

.gallery {
  columns: 3 220px;
  column-gap: 0.8rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0 1.25rem;
}

.filter-chip {
  border: 1px solid rgba(77, 90, 61, 0.24);
  background: #f7f3ea;
  color: #304031;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 90, 61, 0.45);
  background: #f2ece0;
}

.filter-chip.is-active {
  color: #fffdf8;
  border-color: rgba(35, 53, 41, 0.4);
  background: linear-gradient(140deg, #2b4132, #3d5a46);
}

.gallery-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.9rem;
}

.gallery-feature {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(36, 53, 42, 0.2);
  box-shadow: var(--shadow);
  background: #f6f3ea;
}

.gallery-feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-feature figcaption {
  padding: 0.62rem 0.75rem;
  font-size: 0.88rem;
  color: #2f3d30;
  font-weight: 600;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(36, 53, 42, 0.16);
  background: #f8f4ec;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-item figcaption {
  font-size: 0.82rem;
  color: #334132;
  padding: 0.5rem 0.62rem 0.65rem;
  font-weight: 600;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-feature,
.gallery-item {
  cursor: zoom-in;
}

.is-hidden-by-filter {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(9, 12, 10, 0.92);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.lightbox-frame {
  margin: 0;
  text-align: center;
}

.lightbox-frame img {
  max-height: min(78vh, 760px);
  width: auto;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.lightbox-frame figcaption {
  margin-top: 0.7rem;
  color: rgba(245, 247, 243, 0.95);
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #f8f9f4;
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

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

label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3c4636;
  display: block;
  margin-bottom: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8bead;
  border-radius: 11px;
  padding: 0.78rem;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.notice {
  border-left: 4px solid var(--clay);
  background: #fff8ef;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.site-footer {
  margin-top: 2.4rem;
  background:
    radial-gradient(circle at 8% 6%, rgba(223, 154, 120, 0.17), transparent 32%),
    radial-gradient(circle at 95% 18%, rgba(145, 173, 143, 0.18), transparent 35%),
    linear-gradient(135deg, #132117 0%, #1e3125 58%, #223a2b 100%);
  color: #ecede7;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.25rem;
  padding: 2.4rem 0 1.55rem;
}

.footer-brand h3 {
  margin-bottom: 0.5rem;
  color: #f7f8f2;
  font-size: 1.8rem;
}

.footer-brand p {
  margin: 0 0 0.9rem;
  color: rgba(238, 240, 232, 0.9);
  max-width: 32ch;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 217, 196, 0.42);
  background: rgba(217, 130, 91, 0.2);
  color: #ffe6d8;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.68rem;
}

.footer-col h4 {
  margin: 0.15rem 0 0.6rem;
  color: #f6f7f1;
  font-size: 1.15rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links li {
  color: rgba(233, 236, 229, 0.88);
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(237, 240, 232, 0.95);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a::before {
  content: '↗';
  font-size: 0.76rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffe2d2;
  transform: translateX(2px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-row {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.social-row a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.84rem;
  color: #f4f5ef;
  background: rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.44);
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 0.95rem 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(233, 236, 228, 0.82);
  font-size: 0.88rem;
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--pine);
}

.faq-item p {
  margin: 0.75rem 0 0;
}

.final-cta {
  background: linear-gradient(120deg, #1f3227, #2f4b38 58%, #465f43);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 1.2rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: linear-gradient(180deg, rgba(250, 247, 239, 0.96), rgba(241, 233, 219, 0.98));
  border-top: 1px solid #d8cab5;
  backdrop-filter: blur(8px);
  box-shadow: 0 -10px 28px rgba(30, 31, 29, 0.18);
  padding: 0.68rem 0.88rem calc(0.72rem + env(safe-area-inset-bottom));
  display: none;
  gap: 0.6rem;
}

.mobile-cta .btn {
  flex: 1;
  min-height: 46px;
  border-radius: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(33, 43, 35, 0.12);
}

.mobile-cta .btn-primary {
  background: linear-gradient(140deg, #203428, #355140);
  border-color: rgba(255, 255, 255, 0.14);
}

.mobile-cta .btn-secondary {
  background: #fffaf3;
  border: 1px solid #cab69f;
  color: #2d3e31;
}

.mobile-cta .btn:active {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .hero-grid,
  .footer-main,
  .gallery-hero-grid,
  .booking-steps,
  .contact-form-grid,
  .cta-wrap,
  .split,
  .grid-3,
  .grid-2,
  .availability-widget,
  .host-trust-grid,
  .booking-grid,
  .addon-grid,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 1rem;
  }

  .lightbox-nav.prev {
    left: 1rem;
  }

  .lightbox-nav.next {
    right: 1rem;
  }

  .exp-cta {
    justify-content: flex-start;
  }

  .rate-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

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

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(28, 42, 34, 0.98), rgba(37, 55, 45, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.7rem 1.1rem 1rem;
    box-shadow: 0 18px 34px rgba(15, 21, 18, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0 round 0 0 16px 16px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, clip-path 0.32s ease;
    pointer-events: none;
  }

  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 0 0 16px 16px);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 0.72rem 0.7rem;
    border-radius: 12px;
    color: rgba(250, 248, 242, 0.96);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.24s ease, transform 0.24s ease, background-color 0.25s ease, border-color 0.25s ease;
  }

  .nav-links.show a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.show a:nth-child(1) {
    transition-delay: 0.02s;
  }

  .nav-links.show a:nth-child(2) {
    transition-delay: 0.05s;
  }

  .nav-links.show a:nth-child(3) {
    transition-delay: 0.08s;
  }

  .nav-links.show a:nth-child(4) {
    transition-delay: 0.11s;
  }

  .nav-links.show a:nth-child(5) {
    transition-delay: 0.14s;
  }

  .nav-links.show a:nth-child(6) {
    transition-delay: 0.17s;
  }

  .nav-links a::before {
    left: 14px;
    right: 14px;
    bottom: 6px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  .mobile-cta {
    display: flex;
  }
}
