:root {
  --green-900: #233a26;
  --green-800: #314f34;
  --green-700: #486a3f;
  --green-600: #5f7e46;
  --green-500: #6d8b2d;
  --green-100: #e9efdf;
  --terracotta-700: #943d36;
  --terracotta-600: #a9473f;
  --terracotta-500: #b44c43;
  --cream: #f7f4ed;
  --sand: #ede7da;
  --white: #fff;
  --ink: #1a1c18;
  --muted: #5f645d;
  --line: #d8d9d2;
  --focus: #1769aa;
  --shadow: 0 1rem 3rem rgb(35 58 38 / 12%);
  --radius-sm: .75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --container: 75rem;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--green-800); text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: .2rem solid var(--focus);
  outline-offset: .2rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: .5rem;
  color: var(--white);
  background: var(--green-900);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 .5rem;
  color: var(--terracotta-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin-block: .7rem; }

.lead {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.15rem;
  border: .1rem solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: var(--white);
  background: var(--terracotta-700);
  box-shadow: 0 .5rem 1.4rem rgb(148 61 54 / 25%);
}
.button--primary:hover { background: #7d302b; }
.button--secondary {
  border-color: var(--green-700);
  color: var(--green-900);
  background: transparent;
}
.button--light {
  color: var(--green-900);
  background: var(--white);
}
.button--ghost {
  color: inherit;
  background: transparent;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(35 58 38 / 12%);
  background: rgb(247 244 237 / 94%);
  backdrop-filter: blur(1rem);
}
.header-row {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  gap: 1rem;
}
.brand { flex: 0 0 auto; }
.brand img { width: 7.2rem; }
.header-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-left: auto;
}
.header-actions > .button { display: none; }
.phone-link {
  display: none;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.language-switcher a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.language-switcher a:hover { background: var(--green-100); }
.language-switcher a[aria-current="page"] {
  border-color: var(--terracotta-700);
  background: #f8e8e5;
}
.language-switcher img {
  width: 1.75rem;
  height: auto;
  border-radius: .15rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.menu-toggle {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-900);
  background: var(--white);
  cursor: pointer;
}
.menu-toggle svg { width: 1.35rem; }
.site-nav {
  position: fixed;
  inset: 4.8rem 0 auto;
  display: none;
  max-height: calc(100dvh - 4.8rem);
  overflow: auto;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 1rem;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  display: grid;
  gap: .2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  padding: .5rem .75rem;
  border-radius: .5rem;
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current] { background: var(--green-100); }

.hero {
  position: relative;
  min-height: min(47rem, calc(100svh - 4.8rem));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(17 33 19 / 86%) 0%, rgb(17 33 19 / 55%) 55%, rgb(17 33 19 / 15%) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 51rem;
  padding-block: clamp(4rem, 9vw, 8rem);
}
.hero h1 { color: var(--white); }
.hero .eyebrow { color: #f5c8aa; }
.hero__lead {
  max-width: 42rem;
  margin: 1.25rem 0 1.7rem;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
}
.button-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .95rem;
  font-weight: 700;
}
.hero__facts li::before { content: "✓"; margin-right: .45rem; color: #d6e9ac; }

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.trust-item {
  min-height: 6.8rem;
  display: grid;
  place-content: center;
  padding: 1rem;
  border: 1px solid #ecece7;
  text-align: center;
}
.trust-item strong { color: var(--green-900); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .85rem; }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section--white { background: var(--white); }
.section--green { color: var(--white); background: var(--green-900); }
.section--green h2, .section--green h3 { color: var(--white); }
.section--green .eyebrow { color: #d7c28d; }
.section--contact { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--contact .section__head { margin-bottom: 1.4rem; }
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2.3rem;
}
.section__head > div { max-width: 46rem; }

.intro-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
.intro-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.intro-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.check-list {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: .55rem;
}
.check-list li::before { content: "✓"; color: var(--terracotta-700); font-weight: 900; }

.card-grid {
  display: grid;
  gap: 1rem;
}
.service-card, .price-card, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 .5rem 2rem rgb(35 58 38 / 6%);
}
.service-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: .9rem;
  color: var(--terracotta-700);
  background: #f7e9e5;
}
.service-card__icon svg { width: 1.6rem; height: 1.6rem; }
.service-card p, .price-card p { color: var(--muted); }

.service-groups { display: grid; gap: 3rem; }
.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.service-icon-item {
  min-height: 7.5rem;
  display: grid;
  grid-template-rows: 3.8rem auto;
  place-items: center;
  gap: .6rem;
  padding: 1rem .6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green-900);
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 .4rem 1.5rem rgb(35 58 38 / 5%);
}
.service-icon-item img {
  width: 3.7rem;
  height: 3.7rem;
  object-fit: contain;
}
.service-icon-grid--nearby .service-icon-item { background: #f4f7ed; }

.service-map {
  margin: 1.75rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-map img {
  width: 100%;
  max-height: 45rem;
  object-fit: contain;
  background: var(--white);
}
.service-map figcaption {
  padding: .8rem 1rem;
  color: var(--green-900);
  background: #f5ebae;
  font-size: .9rem;
  font-weight: 700;
}

.price-grid { display: grid; gap: 1rem; }
.price-card { position: relative; overflow: hidden; }
.price-card--featured { border: .12rem solid var(--green-600); }
.price {
  display: block;
  margin: .7rem 0;
  color: var(--terracotta-700);
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.price small { font-family: var(--font); font-size: .85rem; font-weight: 650; }
.included {
  margin: 0;
  padding-left: 1.2rem;
}
.included li { margin-block: .35rem; }
.extras {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}
.extra-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.extra-row strong { white-space: nowrap; color: var(--terracotta-700); }
.notice {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: .25rem solid var(--green-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--green-100);
}

.place-grid { display: grid; gap: 1.1rem; }
.place-card {
  position: relative;
  min-height: 19rem;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
}
.place-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.place-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgb(15 30 16 / 85%));
}
.place-card__body { position: relative; z-index: 1; padding: 1.4rem; }
.place-card h3 { color: var(--white); }
.place-card p { margin-bottom: 0; }
.place-card:hover img { transform: scale(1.04); }

.environment-resources {
  margin-top: 2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.resource-links {
  display: grid;
  gap: .7rem;
  margin-top: 1.2rem;
}
.resource-link {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  border-radius: .75rem;
  color: var(--white);
  background: var(--green-700);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.resource-link::after { content: "↗"; font-size: 1.15rem; }
.resource-link:hover {
  transform: translateY(-2px);
  background: var(--green-900);
}
.wikiloc-note { margin-top: 1rem; color: var(--muted); }

.reserve-panel {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--white);
}
.reserve-panel h2 { color: var(--white); }
.reserve-form {
  display: grid;
  gap: .8rem;
}
.field { display: grid; gap: .35rem; }
.field label { font-size: .87rem; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid #aeb9ae;
  border-radius: .65rem;
  color: var(--ink);
  background: var(--white);
  padding: .7rem .8rem;
}
.form-status { min-height: 1.5rem; margin: .3rem 0 0; font-size: .9rem; }

.tripstop-panel {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--white);
}
.tripstop-panel h2, .tripstop-panel h3 { color: var(--white); }
.tripstop-brand {
  width: min(18rem, 75%);
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
}
.tripstop-qr-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
  color: var(--ink);
  text-align: center;
}
.tripstop-qr-card img {
  width: min(19rem, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}
.tripstop-steps {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  counter-reset: tripstop;
}
.tripstop-steps li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  align-items: start;
  gap: .8rem;
  counter-increment: tripstop;
}
.tripstop-steps li::before {
  content: counter(tripstop);
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: #d8e84b;
  font-weight: 900;
}

.location-grid, .contact-grid { display: grid; gap: 1.5rem; }
.map-frame {
  min-height: 24rem;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--sand);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 24rem; border: 0; }
.contact-card a { overflow-wrap: anywhere; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}
.social-link {
  min-width: 8.5rem;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-900);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.5rem rgb(35 58 38 / 12%);
}
.social-link img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.contact-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.contact-panel > *,
.contact-method > span:last-child { min-width: 0; }
.contact-panel a { overflow-wrap: anywhere; }
.contact-methods {
  display: grid;
  gap: .55rem;
}
.contact-method {
  min-height: 3.1rem;
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  align-items: center;
  gap: .75rem;
  padding: .45rem .6rem;
  border-radius: .7rem;
}
.contact-method:hover { background: var(--green-100); }
.contact-method__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
}
.contact-method__icon svg { width: 1.2rem; height: 1.2rem; }
.contact-method a {
  color: var(--green-900);
  font-weight: 750;
}
.contact-method small {
  display: block;
  color: var(--muted);
}
.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
}
.contact-panel .social-links { margin: 0; }

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 1rem;
  bottom: 5.4rem;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border: .2rem solid var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 .7rem 2rem rgb(0 0 0 / 25%);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float img {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.faq { display: grid; gap: .7rem; max-width: 52rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: .2rem 1rem;
}
.faq summary {
  min-height: 3.7rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--green-900);
  font-weight: 800;
}
.faq details p { color: var(--muted); }

.site-footer {
  padding: 3rem 0 6rem;
  color: #e9efe6;
  background: #182a1c;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-logo { width: 13rem; filter: brightness(0) invert(1); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer a { color: #f2f6ee; }
.copyright { color: #bfc9bc; font-size: .85rem; }

.mobile-book {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  box-shadow: 0 .7rem 2rem rgb(0 0 0 / 25%);
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 25%);
}
.cookie-banner[hidden] { display: none; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .9rem;
}
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .35rem; }
.page-hero { padding: 4rem 0 3rem; background: var(--green-100); }
.legal { max-width: 52rem; }

@media (min-width: 42rem) {
  .brand img { width: 11rem; }
  .header-actions > .button { display: inline-flex; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .place-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-links { grid-template-columns: repeat(2, 1fr); }
  .reserve-form { grid-template-columns: repeat(2, 1fr); }
  .reserve-form .button, .reserve-form .form-status { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { grid-template-columns: 1.35fr .65fr; align-items: center; }
}

@media (min-width: 64rem) {
  .header-row { min-height: 5.3rem; }
  .brand img { width: 14.5rem; }
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: block;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    padding: 0;
  }
  .site-nav ul { display: flex; align-items: center; gap: .1rem; }
  .site-nav a { min-height: 2.7rem; padding-inline: .55rem; font-size: .86rem; }
  .phone-link { display: inline-flex; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .service-icon-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .place-grid { grid-template-columns: repeat(3, 1fr); }
  .reserve-panel { grid-template-columns: .8fr 1.2fr; align-items: center; }
  .tripstop-panel { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .location-grid { grid-template-columns: 1.4fr .6fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-book { display: none; }
  .whatsapp-float { bottom: 1.2rem; }
}

@media (max-width: 32rem) {
  .language-switcher a { width: 2rem; height: 2rem; }
  .language-switcher img { width: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
