/* =========================================================================
   HOTEL PIBI BOREAL — Hoja de estilos
   Paleta inspirada en el bosque nuboso: verdes profundos, crema cálida y
   un acento ámbar (heredado del botón naranja del sitio original #f8a04a).
   ========================================================================= */

:root {
  --green-900: #14271b;
  --green-800: #1c3826;
  --green-700: #28503a;
  --green-600: #35684b;
  --green-500: #4a8163;
  --green-100: #e8efe8;
  --sand:      #f7f3ea;
  --sand-2:    #efe7d6;
  --cream:     #fbf8f2;
  --ink:       #20251f;
  --muted:     #6d7268;
  --amber:     #e0913f;
  --amber-dark:#c5762a;
  --amber-soft:#f8a04a;
  --teal:      #0e5570;   /* AmiGO */
  --teal-dark: #0a4257;
  --gold:      #f4c020;   /* AmiGO */
  --white:     #ffffff;
  --shadow-sm: 0 4px 14px rgba(20,39,27,.08);
  --shadow-md: 0 14px 40px rgba(20,39,27,.14);
  --shadow-lg: 0 30px 70px rgba(20,39,27,.22);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 84px;
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--green-900); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------- Helpers / UI */
.kicker {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--amber-dark);
  display: inline-block;
  margin-bottom: 14px;
}
.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.12rem; }
.lead { font-size: 1.08rem; color: #3c4338; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .98rem; letter-spacing: .02em;
  padding: 15px 30px; border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 16px; height: 12px; }
.btn svg path, .btn svg polyline { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--amber); color: #fff; box-shadow: 0 10px 24px rgba(224,145,63,.35); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(224,145,63,.45); }
.btn-ghost { background: transparent; color: var(--green-800); border: 2px solid var(--green-700); }
.btn-ghost:hover { background: var(--green-800); color: #fff; transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ----------------------------------------------------------- Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; z-index: 1002; }
.brand img { height: 52px; width: auto; transition: height .35s ease, filter .35s ease; }
/* On transparent hero, lift the logo for legibility */
.site-header:not(.scrolled) .brand img { filter: drop-shadow(0 2px 8px rgba(0,0,0,.55)); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 600; font-size: .96rem; padding: 10px 14px; border-radius: 8px;
  color: #fff; transition: color .25s, background .25s; position: relative;
}
.site-header:not(.scrolled) .nav a { text-shadow: 0 1px 6px rgba(0,0,0,.45); }
.nav a:hover { color: var(--amber-soft); }
.nav a.nav-book {
  background: var(--amber); color: #fff; margin-left: 6px;
  box-shadow: 0 8px 18px rgba(224,145,63,.4);
}
.nav a.nav-book:hover { background: var(--amber-dark); color: #fff; }

/* Scrolled state: solid header */
.site-header.scrolled { background: var(--cream); box-shadow: 0 4px 20px rgba(20,39,27,.1); height: 72px; }
.site-header.scrolled .brand img { height: 44px; }
.site-header.scrolled .nav a { color: var(--green-900); text-shadow: none; }
.site-header.scrolled .nav a:hover { color: var(--amber-dark); }
.site-header.scrolled .nav a.nav-book { color: #fff; }
.site-header.scrolled .lang-switch button { color: var(--green-900); }

/* Language switch */
.lang-switch { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.lang-switch button {
  font-weight: 700; font-size: .8rem; letter-spacing: .04em; color: #fff;
  padding: 6px 9px; border-radius: 6px; opacity: .7; transition: opacity .2s, background .2s;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.site-header.scrolled .lang-switch button { text-shadow: none; }
.lang-switch button:hover { opacity: 1; }
.lang-switch button.active { opacity: 1; background: var(--amber); color: #fff; text-shadow: none; }
.lang-switch .divider { width: 1px; height: 16px; background: currentColor; opacity: .35; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002; }
.mobile-menu { display: none; }   /* oculto en escritorio; se muestra solo en móvil (ver media query) */
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: #fff; transition: .3s; }
.site-header.scrolled .hamburger span { background: var(--green-900); }
.site-header.menu-open .hamburger span { background: var(--green-900); }
.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------------------------------------------------------- Hero */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,39,27,.45) 0%, rgba(20,39,27,.25) 40%, rgba(20,39,27,.65) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 24px; }
.hero-content h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.6rem); text-shadow: 0 4px 30px rgba(0,0,0,.4); margin-bottom: 18px; }
.hero-content p { font-size: clamp(1.05rem, 2.4vw, 1.5rem); font-weight: 300; text-shadow: 0 2px 16px rgba(0,0,0,.5); margin-bottom: 34px; }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 116px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45); transition: .3s; }
.hero-dots button.active { background: #fff; width: 30px; border-radius: 6px; }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; color: #fff; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; opacity: .9; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll .chev { width: 22px; height: 22px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{ transform: rotate(45deg) translate(0,0);} 50%{ transform: rotate(45deg) translate(5px,5px);} }

/* --------------------------------------------------- Booking widget */
.booking { background: var(--sand); }
.booking-card {
  margin-top: -64px; position: relative; z-index: 20;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 30px clamp(20px, 4vw, 46px) 34px;
  border-top: 5px solid var(--amber);
}
.booking-card h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-align: center; }
.booking-card .book-sub { text-align: center; color: var(--muted); margin: 6px 0 18px; }
#bookWidgetContainer { display: flex; justify-content: center; min-height: 60px; }
#bookWidgetContainer .bookWidget, #bookWidgetContainer form { width: 100%; }

/* --------------------------------------------------------- Welcome */
.welcome { background: var(--sand); }
.welcome-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.welcome-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 22px; }
.welcome-text p { color: #3c4338; margin-bottom: 28px; font-size: 1.08rem; }
.welcome-media { position: relative; }
.welcome-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; max-height: 540px; object-fit: cover; }
.welcome-media .badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--green-800); color: #fff;
  border-radius: var(--radius-sm); padding: 18px 24px; box-shadow: var(--shadow-md); text-align: center;
}
.welcome-media .badge strong { font-family: var(--serif); font-size: 2rem; display: block; line-height: 1; }
.welcome-media .badge span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }

/* ----------------------------------------------------------- Rooms */
.rooms { background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 220px; grid-auto-flow: dense; }
.gallery .g-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.gallery .g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,39,27,.35)); opacity: 0; transition: opacity .35s; }
.gallery .g-item:hover img { transform: scale(1.1); }
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-item .zoom-ico { position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: scale(.7); transition: .35s; z-index: 2; }
.gallery .g-item:hover .zoom-ico { opacity: 1; transform: scale(1); }
.gallery .g-item .zoom-ico::before { content: "+"; font-size: 1.5rem; color: var(--green-800); line-height: 1; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.rooms .center-cta { text-align: center; margin-top: 44px; }

/* ---------------------------------------------------------- Nature */
.nature { position: relative; background: var(--green-900); color: #fff; overflow: hidden; }
.nature::before { content: ""; position: absolute; inset: 0; background-image: url("../images/mossy-branch.jpg"); background-size: cover; background-position: center; opacity: .22; }
.nature .container { position: relative; z-index: 2; }
.nature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.nature-text h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.nature-text .kicker { color: var(--gold); }
.nature-text p { color: rgba(255,255,255,.86); font-size: 1.1rem; }
.nature-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.nature-thumbs img { border-radius: var(--radius-sm); height: 150px; width: 100%; object-fit: cover; box-shadow: var(--shadow-md); cursor: pointer; transition: transform .4s; }
.nature-thumbs img:hover { transform: translateY(-5px) scale(1.02); }

/* ----------------------------------------------------------- Trips */
.trips { background: var(--sand); }
.trip-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch;
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  margin-bottom: 44px;
}
.trip-card.reverse { grid-template-columns: 1fr 1.1fr; }
.trip-card.reverse .trip-media { order: 2; }
.trip-media { position: relative; min-height: 420px; }
.trip-media .trip-main { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.trip-thumbs { position: absolute; bottom: 14px; left: 14px; right: 14px; display: flex; gap: 8px; z-index: 2; overflow-x: auto; padding-bottom: 4px; }
.trip-thumbs img { width: 64px; height: 48px; flex: 0 0 auto; object-fit: cover; border-radius: 7px; border: 2px solid rgba(255,255,255,.7); cursor: pointer; opacity: .8; transition: .25s; }
.trip-thumbs img:hover, .trip-thumbs img.active { opacity: 1; border-color: var(--amber); transform: translateY(-2px); }
.trip-body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.trip-body h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.trip-body .trip-desc { color: #3c4338; }
.trip-body .trip-desc ul { margin: 10px 0 10px 4px; }
.trip-body .trip-desc li { position: relative; padding-left: 22px; margin-bottom: 4px; font-weight: 600; color: var(--green-800); }
.trip-body .trip-desc li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.trip-body .btn { margin-top: 26px; align-self: flex-start; }

/* -------------------------------------------------------- Rent a Car */
.rentacar { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; position: relative; overflow: hidden; }
.rentacar::before { content: ""; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(244,192,32,.22), transparent 70%); }
.rentacar .container { position: relative; z-index: 2; }
.rentacar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.rentacar .kicker { color: var(--gold); }
.rentacar-logo { background: #fff; border-radius: 14px; padding: 14px 20px; display: inline-block; margin-bottom: 22px; box-shadow: var(--shadow-md); }
.rentacar-logo img { height: 46px; width: auto; }
.rentacar h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 10px; }
.rentacar .tagline { color: var(--gold); font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; }
.rentacar p.lead { color: rgba(255,255,255,.9); }
.rentacar-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 28px 0 34px; }
.rentacar-features li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.rentacar-features .fi { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.rentacar-features .fi svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-rent {
  background: var(--gold); color: var(--teal-dark); font-size: 1.12rem; font-weight: 800;
  padding: 19px 40px; border-radius: 50px; box-shadow: 0 14px 34px rgba(244,192,32,.4);
  text-transform: uppercase; letter-spacing: .03em;
}
.btn-rent:hover { background: #ffd534; transform: translateY(-4px); box-shadow: 0 20px 44px rgba(244,192,32,.55); }
.btn-rent svg { width: 22px; height: 16px; stroke: currentColor; }
.rentacar-note { display: block; margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.7); }
.rentacar-media { position: relative; text-align: center; }
.rentacar-car { filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.rentacar-media .car-2 { position: absolute; bottom: -10px; right: 0; width: 46%; opacity: .92; filter: drop-shadow(0 18px 24px rgba(0,0,0,.4)); }

/* ---------------------------------------------------------- Footer */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.78); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .14em; margin-bottom: 16px; }
.footer-col p, .footer-col a { font-size: .96rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--amber-soft); }
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand .tag { font-style: italic; font-family: var(--serif); }
.footer-contact a { display: block; }
.footer-map iframe { width: 100%; height: 170px; border: 0; border-radius: var(--radius-sm); filter: grayscale(.2); }
.footer-map .btn { margin-top: 12px; font-size: .85rem; padding: 10px 18px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: .25s; }
.footer-social a:hover { background: var(--amber); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* -------------------------------------------------------- Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(15,24,18,.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 24px; right: 30px; font-size: 2.4rem; color: #fff; line-height: 1; opacity: .8; }
.lightbox .lb-close:hover { opacity: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; opacity: .65; padding: 20px; user-select: none; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-prev { left: 10px; } .lightbox .lb-next { right: 10px; }

/* ------------------------------------------------ Interior pages */
.page-hero { height: 56vh; min-height: 380px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; position: relative; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,39,27,.55), rgba(20,39,27,.7)); }
.page-hero .ph-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); text-shadow: 0 4px 24px rgba(0,0,0,.4); }
.page-hero .crumb { color: rgba(255,255,255,.85); letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; margin-top: 10px; }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.about-grid .about-copy p { display: none; } /* placeholder; content injected */
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 20px; }
.about-copy .about-body { color: #3c4338; font-size: 1.06rem; }
.about-copy .btn { margin-top: 26px; }
.about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-collage img { border-radius: var(--radius-sm); height: 100%; width: 100%; object-fit: cover; box-shadow: var(--shadow-sm); }
.about-collage img:first-child { grid-column: 1 / -1; height: 260px; }

/* Accordion (FAQ) */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.acc-item { background: #fff; border-radius: var(--radius-sm); margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; padding: 22px 26px; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--green-900); transition: background .25s; }
.acc-head:hover { background: var(--sand); }
.acc-head .acc-ico { flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.acc-head .acc-ico::before, .acc-head .acc-ico::after { content: ""; position: absolute; background: var(--amber); border-radius: 2px; }
.acc-head .acc-ico::before { top: 12px; left: 4px; right: 4px; height: 3px; }
.acc-head .acc-ico::after { left: 12px; top: 4px; bottom: 4px; width: 3px; transition: transform .3s; }
.acc-item.open .acc-ico::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-panel .acc-inner { padding: 0 26px 24px; color: #3c4338; }

/* ------------------------------------------------ Reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; } .reveal.d3 { transition-delay: .36s; }

/* ----------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .nav, .lang-switch.desktop { display: none; }
  .hamburger { display: flex; }
  /* Mobile slide-in menu */
  .mobile-menu {
    position: fixed; inset: 0; background: var(--cream); z-index: 1001;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    transform: translateX(100%); transition: transform .4s ease;
  }
  .site-header.menu-open .mobile-menu { transform: translateX(0); }
  .mobile-menu a { font-family: var(--serif); font-size: 1.5rem; color: var(--green-900); padding: 12px; }
  .mobile-menu a.nav-book { background: var(--amber); color: #fff; padding: 12px 34px; border-radius: 50px; margin-top: 10px; font-family: var(--sans); font-size: 1.1rem; }
  .mobile-menu .lang-switch { margin-top: 24px; }
  .mobile-menu .lang-switch button { color: var(--green-900); font-size: 1rem; padding: 8px 14px; border: 1px solid var(--sand-2); border-radius: 8px; opacity: 1; }
  .mobile-menu .lang-switch button.active { background: var(--amber); color: #fff; border-color: var(--amber); }
  .mobile-menu .divider { display: none; }

  .welcome-grid, .nature-grid, .rentacar-grid, .about-grid { grid-template-columns: 1fr; }
  .nature-text { order: 2; }
  .welcome-media .badge { left: 16px; bottom: 16px; }
  .trip-card, .trip-card.reverse { grid-template-columns: 1fr; }
  .trip-card.reverse .trip-media { order: 0; }
  .rentacar-media { order: -1; }
  .rentacar-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-dots { bottom: 90px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .g-wide { grid-column: span 2; }
  .nature-thumbs { grid-template-columns: repeat(3, 1fr); }
  .nature-thumbs img { height: 92px; }
  .booking-card { margin-top: -44px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}
