﻿:root {
  --sand-100: #f6f0e7;
  --earth-700: #5f432f;
  --ink-900: #211b16;
  --white: #ffffff;
  --shadow-soft: 0 14px 50px rgba(23, 17, 13, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 15% 12%, rgba(237, 224, 201, 0.72), transparent 42%),
    radial-gradient(circle at 86% 25%, rgba(201, 224, 208, 0.5), transparent 45%),
    var(--sand-100);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  padding-top: 42px;
}

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

.trust-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.45rem 0.7rem;
  background: rgba(19, 16, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8efe1;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar span {
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 1.4rem clamp(1rem, 2.6vw, 3rem) 4rem;
  display: grid;
  align-content: space-between;
  color: var(--white);
  overflow: hidden;
  background: #1b1612;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 17, 15, 0.28), rgba(20, 17, 15, 0.62)),
    radial-gradient(circle at 38% 22%, rgba(255, 244, 222, 0.24), transparent 46%),
    radial-gradient(circle at 78% 68%, rgba(177, 215, 196, 0.18), transparent 44%);
  pointer-events: none;
}

.hero.hero-missing .hero-media {
  display: none;
}

.hero.hero-missing {
  background:
    linear-gradient(160deg, #83654b 0%, #3f3024 100%);
}

.hero-missing-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
  font-size: 0.75rem;
}

.nav,
.hero-content,
.hero-scroll {
  position: relative;
  z-index: 2;
}

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

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: 0.03em;
}

.menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.menu a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-link {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(24, 20, 17, 0.5);
  color: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

.lang-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lang-link.is-active {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
}

.translate-element-hidden {
  position: absolute;
  left: -9999px;
  top: 0;
}

.goog-te-gadget {
  font-size: 0 !important;
}

.hero-content {
  max-width: 780px;
  margin-top: 4.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 8.3vw, 6.4rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero p {
  max-width: 60ch;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.serenity-tags {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.serenity-tags span {
  display: inline-flex;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
  font: inherit;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ccb08e 0%, #b08a64 100%);
  color: #21160f;
  box-shadow: 0 8px 24px rgba(33, 22, 15, 0.3);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-dark {
  border-color: rgba(33, 27, 22, 0.34);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.52);
}

.hero-scroll {
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  opacity: 0.85;
}

.section {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: clamp(3.2rem, 7vw, 6rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.intro-media {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
}

.media-card,
.sig-card,
.story-item,
.stay-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(95, 67, 47, 0.18);
  background: linear-gradient(135deg, #e9ddcb, #d4c1a8);
}

.media-card img,
.sig-card img,
.story-item img,
.stay-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.media-card:hover img,
.sig-card:hover img,
.story-item:hover img,
.stay-media:hover img {
  transform: scale(1.04);
}

.media-card.wide {
  aspect-ratio: 16 / 9;
}

.media-card.tall {
  aspect-ratio: 3 / 4;
}

.section h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin-bottom: 1rem;
}

.facts {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.facts div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(95, 67, 47, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.facts span {
  font-size: 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--earth-700);
  margin-right: 0.35rem;
}

.fit {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.fit-card {
  grid-column: span 6;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.fit-card h3 {
  font-size: 1.9rem;
  margin-bottom: 0.55rem;
}

.fit-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.fit-card.reject {
  border-color: rgba(156, 81, 68, 0.35);
  background: linear-gradient(170deg, rgba(255, 246, 242, 0.96), rgba(255, 250, 246, 0.78));
}

.section-head {
  margin-bottom: 1.5rem;
}

.quick-usp {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.usp-grid .card h3 {
  font-size: 1.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.card {
  grid-column: span 4;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.card .btn {
  margin-top: 0.55rem;
}

.stays-grid .card {
  min-height: 270px;
}

.stays-grid.four-cols .card {
  grid-column: span 3;
}

.pricing-grid .card {
  min-height: 280px;
}

.pricing-grid.four-cols .card {
  grid-column: span 3;
}

.pricing-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pricing-meta div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(95, 67, 47, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
}

.price-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin: 0.25rem 0 0.35rem;
  color: var(--earth-700);
}

.price-note {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.policy-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.policy-card {
  grid-column: span 6;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.policy-card h3 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.stay-media {
  margin-bottom: 0.8rem;
  aspect-ratio: 4 / 3;
}

.stay-price {
  margin: 0.5rem 0 0.9rem;
  padding: 0.7rem 0.9rem;
  background: rgba(176, 138, 100, 0.1);
  border-radius: 10px;
  border-left: 3px solid #b08a64;
  font-size: 0.85rem;
  line-height: 1.7;
}

.stay-price strong {
  color: var(--earth-700);
  font-weight: 600;
}

.stay-price-note {
  font-size: 0.77rem;
  opacity: 0.6;
  margin-top: 0.1rem;
}

code {
  background: rgba(95, 67, 47, 0.12);
  padding: 0.18rem 0.35rem;
  border-radius: 0.4rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.sig-card {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.sig-card.xl {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.sig-card.portrait {
  aspect-ratio: 3 / 4;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.story-item {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.story-item.large {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.story-item.tall {
  aspect-ratio: 3 / 4;
}

.journey {
  background:
    radial-gradient(circle at 80% 18%, rgba(194, 168, 137, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.journey-step {
  grid-column: span 3;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.journey-step .time {
  display: inline-flex;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  background: rgba(95, 67, 47, 0.12);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.journey-step h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.faq {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

/* ── Finca Intro Section ── */
.finca-intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.finca-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.4rem 0 1rem;
  line-height: 1.2;
  color: var(--earth-700);
}

.finca-intro-text p {
  opacity: 0.85;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

.finca-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: rgba(176, 138, 100, 0.08);
  border: 1px solid rgba(176, 138, 100, 0.2);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
}

.finca-facts li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.4;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(176, 138, 100, 0.15);
}

.finca-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.finca-facts strong {
  min-width: 90px;
  color: var(--earth-700);
  font-weight: 600;
}

@media (max-width: 760px) {
  .finca-intro-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.faq-item {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.faq-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.rust-promise {
  background:
    radial-gradient(circle at 20% 14%, rgba(187, 214, 198, 0.24), transparent 42%),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.promise-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.2rem;
}

.promise-card p {
  margin: 0;
}

.promise-card p + p {
  margin-top: 0.7rem;
}

.testimonials {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.testimonials-grid .testimonial-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
}

.testimonial-card .quote {
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card .author {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  opacity: 0.78;
}

.missing-image {
  min-height: 230px;
  display: grid;
  place-items: center;
}

.missing-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(33, 27, 22, 0.78);
}

.booking {
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(194, 168, 137, 0.2), transparent 48%),
    rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.availability {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.availability-copy {
  max-width: 72ch;
  margin-bottom: 1rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.availability-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.availability-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.availability-card ol {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.availability-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.quick-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.micro-note {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  opacity: 0.86;
}

.availability-calendar {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(95, 67, 47, 0.18);
  background: #efe3d0;
  position: relative;
}

.availability-calendar iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: none;
}

.availability-calendar.has-embed iframe {
  display: block;
}

.embed-fallback {
  min-height: 420px;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.6), transparent 45%),
    linear-gradient(145deg, #ead9c2, #d6bc9b);
}

.embed-fallback h3 {
  font-size: 2rem;
  margin: 0;
}

.embed-fallback p {
  margin: 0 auto;
  max-width: 40ch;
}

.booking-form {
  margin-top: 1.2rem;
  text-align: left;
}

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

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: rgba(33, 27, 22, 0.84);
}

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

.consent-line {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
}

.consent-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.consent-line span {
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent-line a {
  text-decoration: underline;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(95, 67, 47, 0.25);
  border-radius: 12px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.88);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(176, 138, 100, 0.35);
  border-color: rgba(176, 138, 100, 0.8);
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.form-status {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  color: rgba(33, 27, 22, 0.82);
}

.form-fit {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: rgba(33, 27, 22, 0.86);
}

.footer {
  text-align: center;
  padding: 1.5rem 1rem 2.3rem;
  color: rgba(33, 27, 22, 0.72);
}

.footer-contact {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.footer-contact a {
  text-decoration: underline;
}

.footer-links {
  margin-top: 0.35rem;
}

.footer-links a {
  text-decoration: underline;
}

.sticky-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  border-radius: 999px;
  padding: 0.76rem 1.15rem;
  background: linear-gradient(135deg, #ccb08e 0%, #b08a64 100%);
  color: #21160f;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(33, 22, 15, 0.35);
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
  transition: background 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-helper {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: grid;
  gap: 0.4rem;
  background: rgba(24, 20, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.55rem;
  box-shadow: 0 12px 26px rgba(10, 8, 7, 0.35);
}

.whatsapp-helper a {
  color: #f5eee4;
  font-size: 0.78rem;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 5rem;
  z-index: 120;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(95, 67, 47, 0.2);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(24, 18, 14, 0.28);
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.75rem;
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Suppress Google Translate toolbar */
body > .skiptranslate,
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { font-size: 0 !important; }

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.95s ease, transform 0.95s ease;
  transition-delay: var(--d, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Glamping Spotlight ─────────────────────────────── */
.glamping-spotlight {
  background:
    radial-gradient(circle at 85% 15%, rgba(177, 215, 196, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.glamping-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.glamping-tags {
  margin-top: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.glamping-tags span {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 67, 47, 0.22);
}

.glamping-images {
  display: grid;
  gap: 0.9rem;
}

/* ── Hostess / Healing Section ──────────────────────── */
.hostess-section {
  background:
    radial-gradient(circle at 18% 80%, rgba(194, 168, 137, 0.18), transparent 44%),
    radial-gradient(circle at 82% 12%, rgba(177, 215, 196, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 67, 47, 0.17);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.hostess-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.hostess-story p {
  margin: 0;
  line-height: 1.75;
}

.hostess-story p + p {
  margin-top: 0.9rem;
}

.hostess-offer-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(95, 67, 47, 0.14);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
}

.hostess-offer-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.hostess-offer-card p {
  margin: 0;
  font-size: 0.94rem;
}

.hostess-images {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
}

@media (max-width: 980px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-media {
    grid-template-columns: 1fr;
  }

  .card {
    grid-column: span 6;
  }

  .stays-grid.four-cols .card,
  .pricing-grid.four-cols .card {
    grid-column: span 6;
  }

  .availability-grid {
    grid-template-columns: 1fr;
  }

  .sig-card,
  .sig-card.xl,
  .story-item,
  .story-item.large {
    grid-column: span 6;
  }

  .policy-card {
    grid-column: span 12;
  }

  .fit-card {
    grid-column: span 12;
  }

  .journey-step {
    grid-column: span 6;
  }

  .glamping-content,
  .hostess-grid {
    grid-template-columns: 1fr;
  }

  .hostess-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
  }

  .menu {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(16, 14, 12, 0.98);
    padding: 0.6rem 1rem 1rem;
    border-radius: 0 0 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    z-index: 9999;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .menu a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
    width: 100%;
  }

  .lang-switch {
    margin-left: auto;
  }

  .lang-link {
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
  }

  /* Trust bar: toon max 3 items, geen wrap */
  .trust-bar {
    font-size: 0.6rem;
    gap: 0.3rem;
    letter-spacing: 0.04em;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 0.3rem 0.5rem;
    min-height: 38px;
    justify-content: center;
  }

  .trust-bar span:nth-child(4),
  .trust-bar span:nth-child(5) {
    display: none;
  }

  body {
    padding-top: 38px;
  }

  .menu.open {
    display: flex;
  }

  /* Brand naam kleiner op mobiel */
  .brand {
    font-size: 1.05rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Kaarten: 1 kolom op mobiel */
  .card {
    grid-column: span 12;
  }

  /* Verblijven & prijzen: 1 kolom */
  .stays-grid.four-cols .card,
  .pricing-grid.four-cols .card {
    grid-column: span 12;
  }

  /* Galerij: grote foto breed, rest 2 kolommen */
  .sig-card.xl,
  .story-item.large {
    grid-column: span 12;
  }

  .sig-card,
  .story-item {
    grid-column: span 6;
  }

  /* Dagroutine: 2 per rij */
  .journey-step {
    grid-column: span 6;
  }

  /* Formulier: 1 kolom */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Hero: betere spacing */
  .hero {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    margin-top: 2rem;
  }

  /* Hero knoppen: groter en beter klikbaar */
  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
  }

  /* Alle knoppen: groter touch target */
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.2rem;
  }

  .serenity-tags {
    margin-top: 1rem;
  }

  /* WhatsApp en aanvraag knop: niet overlappen */
  .sticky-contact {
    display: none;
  }

  .whatsapp-float {
    left: 1rem;
    bottom: 1rem;
    font-size: 0.92rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
  }

  .whatsapp-helper {
    left: 0.75rem;
    bottom: 0.75rem;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 5rem;
    border-radius: 14px;
  }

  /* Sectie titels kleiner op mobiel */
  .section h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* Introductie tekst leesbaar */
  .hero p {
    font-size: 1rem;
  }

  /* Policy cards: elk vol breedte */
  .policy-card {
    grid-column: span 12;
  }
}

/* Extra klein: iPhone SE e.d. */
@media (max-width: 400px) {
  .brand {
    font-size: 0.9rem;
    max-width: 120px;
  }

  .trust-bar span:nth-child(3) {
    display: none;
  }

  .sig-card,
  .story-item {
    grid-column: span 12;
  }

  .journey-step {
    grid-column: span 12;
  }
}
