:root {
  --ink: #101a17;
  --muted: #60706a;
  --line: rgba(16, 26, 23, 0.12);
  --paper: #f8f4ec;
  --panel: #fffdf8;
  --pine: #0e3f35;
  --pine-2: #0f5b4a;
  --lake: #126d7b;
  --terracotta: #b26136;
  --gold: #d49a37;
  --cream: #fff9ef;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(16, 26, 23, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --display: "Fraunces", Georgia, serif;
  --body: "Plus Jakarta Sans", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(16, 26, 23, 0.1);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(22px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 7px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--white);
}

.brand strong {
  display: block;
  color: var(--pine);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--pine);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  justify-content: flex-start;
  gap: clamp(4px, 0.6vw, 8px);
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px clamp(9px, 0.75vw, 13px);
  border-radius: 999px;
  color: rgba(16, 26, 23, 0.76);
  font-size: clamp(0.84rem, 0.76vw, 0.92rem);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(14, 63, 53, 0.09);
  color: var(--pine);
}

.nav-menu .nav-social {
  display: none;
}

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

.header-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(14, 63, 53, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.header-socials a:hover {
  transform: translateY(-1px);
  background: rgba(14, 63, 53, 0.1);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(14, 63, 53, 0.16);
  border-radius: 999px;
  background: rgba(14, 63, 53, 0.06);
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-whatsapp:hover {
  background: rgba(14, 63, 53, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn.primary {
  background: var(--pine);
  color: var(--white);
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--pine-2);
  box-shadow: 0 16px 34px rgba(14, 63, 53, 0.24);
}

.btn.light {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--pine);
}

.btn.glass {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 18%, rgba(212, 154, 55, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(5, 18, 15, 0.84), rgba(5, 18, 15, 0.46), rgba(5, 18, 15, 0.14)),
    linear-gradient(0deg, rgba(5, 18, 15, 0.65), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 42px;
  align-items: end;
  width: min(1220px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: 42px 0 44px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.tag.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.75rem, 4.9vw, 5.8rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  color: var(--pine);
  font-size: clamp(1.9rem, 3.15vw, 3.7rem);
  line-height: 1.04;
}

h3 {
  color: var(--pine);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-platforms {
  width: min(100%, 560px);
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-platforms span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-platforms .platform-links a {
  background: rgba(255, 255, 255, 0.95);
  color: var(--pine);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.booking-card,
.panel,
.room-card,
.host-card,
.reserve-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.booking-card {
  padding: 26px;
  box-shadow: var(--shadow);
}

.booking-card p,
.fine-print {
  color: var(--muted);
}

.price {
  display: block;
  color: var(--pine);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.quick-list {
  display: grid;
  gap: 0;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.quick-list span {
  color: var(--muted);
}

.platform-booking {
  margin: 14px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(250, 247, 240, 0.76);
}

.platform-booking span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
}

.platform-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(14, 63, 53, 0.14);
  border-radius: 16px;
  background: var(--white);
  color: var(--pine);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 63, 53, 0.32);
  box-shadow: 0 12px 24px rgba(14, 63, 53, 0.12);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(36px, 4.8vw, 70px) 0;
}

.section.alt,
.full-alt {
  background: var(--cream);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.metrics,
.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metrics div,
.strip div {
  padding: 18px;
  background: var(--panel);
}

.metrics strong,
.strip strong {
  display: block;
  color: var(--pine);
  font-size: 1.35rem;
}

.metrics span,
.strip span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.home-search-copy {
  margin-top: 18px;
}

.home-search-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.keyword-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 850;
}

.testimonials-section {
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.testimonial-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonial-header h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
}

.testimonial-header .lead {
  max-width: 680px;
}

.testimonial-header .btn {
  flex: 0 0 auto;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.testimonial-track {
  display: flex;
  gap: 0;
  transition: transform 360ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  min-height: 286px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(14, 63, 53, 0.1);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--white);
  font-weight: 900;
}

.review-top strong,
.review-top small {
  display: block;
}

.review-top strong {
  color: var(--ink);
  font-size: 1rem;
}

.review-top small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-top small::before {
  content: "★★★★★ ";
  color: #f4b400;
  letter-spacing: 0.02em;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.58;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.review-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--pine);
  font-size: 0.8rem;
  font-weight: 800;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.carousel-btn {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--pine);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 63, 53, 0.22);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 26px;
  background: var(--pine);
}

.photo-board {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  grid-template-rows: 238px 238px;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.photo-tile,
.gallery-grid button {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}

.photo-tile.large {
  grid-row: span 2;
}

.photo-tile img,
.gallery-grid img {
  height: 100%;
  transition: transform 260ms ease, opacity 260ms ease;
}

.photo-tile:hover img,
.gallery-grid button:hover img {
  transform: scale(1.035);
  opacity: 0.9;
}

.recognition-section {
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

.recognition-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.recognition-media {
  display: block;
  height: 100%;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cream);
  cursor: pointer;
}

.recognition-media img {
  height: 100%;
  object-fit: contain;
  background: var(--cream);
}

.gallery-grid .contain-image img {
  object-fit: contain;
  background: var(--cream);
}

.recognition-card div {
  padding: clamp(22px, 4vw, 38px) clamp(22px, 4vw, 42px) clamp(22px, 4vw, 38px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.74);
  color: var(--pine);
  font-weight: 850;
}

.room-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.room-card img {
  min-height: 470px;
}

.room-card div {
  padding: 20px;
}

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

.info-card,
.amenity-card,
.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.info-card img,
.experience-card img {
  height: 270px;
}

.info-card div,
.amenity-card,
.experience-card div {
  padding: 20px;
}

.amenity-card {
  min-height: 220px;
}

.amenity-card span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
}

.host-section {
  padding: clamp(48px, 5.5vw, 76px) max(16px, calc((100vw - 1180px) / 2));
  background: var(--pine);
}

.host-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
}

.host-card img {
  height: 100%;
  min-height: 430px;
}

.host-card div {
  padding: 32px 34px 32px 0;
}

.host-card p,
.experience-card p,
.info-card p,
.amenity-card p {
  color: var(--muted);
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.page-hero img,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero img {
  height: 100%;
}

.page-hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(5, 18, 15, 0.82), rgba(5, 18, 15, 0.24));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 58px) 0;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.6vw, 5.2rem);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.gallery-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

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

.gallery-grid button {
  height: 320px;
}

.guest-intro {
  display: block;
}

.guest-intro .panel {
  max-width: 860px;
  padding: clamp(22px, 3vw, 34px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  align-items: start;
}

.video-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 14px 32px rgba(14, 63, 53, 0.08);
}

.video-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(250px, 28vw, 360px);
  background: var(--ink);
  border-radius: 12px;
  object-fit: contain;
}

.video-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 6px 4px;
}

.video-card h3 {
  margin: 0;
  font-family: var(--body);
  font-size: 0.98rem;
}

.video-card span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.reservation-section,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 46px;
  align-items: start;
}

.reserve-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--pine);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

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

.policy-card {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--white);
}

.policy-card span {
  color: rgba(255, 255, 255, 0.76);
}

.booking-process {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.booking-process div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.booking-process span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-process strong {
  color: var(--pine);
}

.booking-process p,
.reservation-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.reservation-note {
  margin-top: 14px;
  padding: 13px 14px;
  border-left: 4px solid var(--copper);
  border-radius: 14px;
  background: rgba(194, 111, 55, 0.1);
}

.contact-card {
  padding: 32px;
}

.contact-card p {
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  padding: 42px clamp(16px, 4vw, 54px) 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.8fr));
  gap: 32px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.footer-brand img {
  width: 96px;
  height: auto;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  object-fit: contain;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.footer-links a:hover,
.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(1220px, 100%);
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom span {
  display: inline-block;
  margin-left: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-book {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-book > div {
  min-width: 0;
  padding-right: 4px;
}

.mobile-book .btn {
  flex: 0 0 auto;
}

.mobile-book strong,
.mobile-book span {
  display: block;
}

.mobile-book strong {
  color: var(--pine);
}

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

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 72;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: #25d366;
  color: #082d18;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(37, 211, 102, 0.34);
}

.whatsapp-float span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #128c4a;
  font-size: 0.8rem;
}

.lightbox {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(4, 12, 10, 0.74);
  backdrop-filter: blur(5px);
}

.lightbox img {
  max-height: 78vh;
}

.close-lightbox {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: space-between;
    border-radius: var(--radius-sm);
  }

  .nav-menu .nav-social {
    display: inline-flex;
    background: rgba(14, 63, 53, 0.06);
    color: var(--pine);
  }

  .header-actions {
    display: none;
  }

  .hero-content,
  .section-grid,
  .split,
  .host-card,
  .recognition-card,
  .guest-intro,
  .reservation-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 32px);
  }

  .booking-card {
    max-width: 520px;
  }

  .metrics,
  .strip,
  .card-grid,
    .amenity-grid,
    .experience-grid,
    .gallery-grid,
    .video-grid,
    .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card video {
    height: clamp(280px, 48vw, 430px);
  }

  .testimonial-header {
    align-items: start;
    flex-direction: column;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .photo-board {
    grid-template-columns: 1fr 1fr;
  }

  .host-card div {
    padding: 0 26px 28px;
  }

  .recognition-card div {
    padding: 0 26px 28px;
  }

  .recognition-media {
    min-height: 300px;
  }

  .hero,
  .hero-content {
    min-height: 600px;
  }

  .page-hero {
    min-height: 390px;
  }
}

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

  .header-inner {
    width: min(100% - 24px, 1220px);
    gap: 12px;
  }

  .brand img {
    width: 64px;
    height: 50px;
  }

  .brand small,
  .header-whatsapp {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 24px, 1220px);
    padding: 36px 0 28px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.6vw, 2.65rem);
  }

  .hero-copy p,
  .copy-block p,
  .page-hero p {
    font-size: 1rem;
  }

  .page-hero {
    min-height: 330px;
  }

  .section,
  .photo-board,
  .page-hero-content {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 30px 0;
  }

  .testimonials-section {
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .testimonial-header {
    gap: 14px;
    margin-bottom: 14px;
  }

  .metrics div,
  .strip div {
    padding: 14px;
  }

  .metrics,
  .strip,
  .card-grid,
    .amenity-grid,
    .experience-grid,
    .gallery-grid,
    .video-grid,
    .photo-board,
    .form-row,
    .footer-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    gap: 18px;
  }

  .video-card {
    padding: 10px;
    border-radius: 18px;
  }

  .video-card video {
    height: min(62vh, 430px);
    min-height: 280px;
    border-radius: 10px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 0;
  }

  .photo-board {
    grid-template-rows: none;
  }

  .photo-tile,
  .gallery-grid button {
    min-height: 240px;
  }

  .photo-tile.large {
    grid-row: auto;
  }

  .room-card img,
  .host-card img {
    min-height: 320px;
  }

  .gallery-header {
    display: grid;
  }

  .reserve-form,
  .contact-card,
  .booking-card {
    padding: 22px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 88px;
    min-height: 48px;
    padding: 8px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float span {
    width: 34px;
    height: 34px;
  }

  .mobile-book {
    display: flex;
  }
}

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

  .brand img {
    width: 56px;
    height: 44px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 8px 12px;
  }

  .booking-card,
  .reserve-form,
  .contact-card {
    padding: 18px;
  }
}

body[data-page="contact"] .page-hero {
  min-height: 300px;
}

body[data-page="contact"] .page-hero-content {
  padding: 38px 0 34px;
}

body[data-page="contact"] .page-hero h1 {
  max-width: 680px;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

body[data-page="contact"] .page-hero p {
  max-width: 590px;
  font-size: 1rem;
}

body[data-page="contact"] .section {
  padding: clamp(30px, 4vw, 48px) 0;
}

body[data-page="contact"] .reservation-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(22px, 3vw, 34px);
}

body[data-page="contact"] .contact-grid {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 3vw, 34px);
  padding-top: 0;
}

body[data-page="contact"] .reservation-section h2,
body[data-page="contact"] .contact-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 3.05rem);
  line-height: 1.08;
}

body[data-page="contact"] .lead {
  max-width: 520px;
  font-size: 0.98rem;
}

body[data-page="contact"] .policy-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
}

body[data-page="contact"] .reserve-form {
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(14, 63, 53, 0.12);
}

body[data-page="contact"] label {
  gap: 6px;
}

body[data-page="contact"] input,
body[data-page="contact"] select,
body[data-page="contact"] textarea {
  min-height: 44px;
  padding: 10px 12px;
}

body[data-page="contact"] textarea {
  min-height: 96px;
}

body[data-page="contact"] .reserve-form .quick-list {
  margin: 4px 0;
}

body[data-page="contact"] .reserve-form .quick-list li {
  padding: 10px 0;
}

body[data-page="contact"] .fine-print {
  margin-bottom: 2px;
  font-size: 0.88rem;
}

body[data-page="contact"] .contact-card {
  padding: 24px;
  border-radius: 22px;
}

body[data-page="contact"] .contact-card p {
  margin-bottom: 12px;
}

body[data-page="contact"] .map-frame {
  min-height: 340px;
  border-radius: 22px;
}

@media (max-width: 1080px) {
  body[data-page="contact"] .reservation-section,
  body[data-page="contact"] .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  body[data-page="contact"] .page-hero {
    min-height: 260px;
  }

  body[data-page="contact"] .page-hero-content {
    padding: 28px 0 26px;
  }

  body[data-page="contact"] .page-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  body[data-page="contact"] .section {
    padding: 30px 0;
  }

  body[data-page="contact"] .reservation-section {
    padding-bottom: 24px;
  }

  body[data-page="contact"] .reserve-form,
  body[data-page="contact"] .contact-card {
    padding: 18px;
  }

  body[data-page="contact"] .map-frame {
    min-height: 260px;
  }
}
