/* =============================================================
   URBIT Social Lofts — Light · Mint Green (brand-accurate)
   ============================================================= */

/* 1. Tokens
   ============================================================= */
:root {
  --bg:        #ffffff;
  --bg-soft:   #f5f7f5;   /* soft off-white / mist */
  --bg-mist:   #eef3ef;
  --ink:       #16181a;   /* near-black text */
  --ink-soft:  #3a3f42;
  --ink-mute:  #6b7176;
  --green:     #8BD09A;   /* brand mint */
  --green-band:#9ed7ab;   /* section band */
  --green-soft:#e6f4ea;   /* tint */
  --green-deep:#2f9d68;   /* accent on white (large text / UI) */
  --green-text:#1f7d4f;   /* darker green for SMALL text on white (WCAG AA) */
  --line:      rgba(22,24,26,.12);
  --line-2:    rgba(22,24,26,.07);

  --sans:    'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Manrope', system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1200px;
  --pad: clamp(1.2rem, 5vw, 4rem);
}

/* 2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-family: var(--display); font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--green); color: var(--ink); }
:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; border-radius: 4px; }

/* 3. Utilities
   ============================================================= */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, 800px); }
.section { padding: clamp(3.5rem, 9vw, 7rem) 0; position: relative; }
.eyebrow {
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-text); font-weight: 600; margin-bottom: 1rem;
  font-family: var(--sans);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.08; max-width: 18ch; margin-bottom: 2.6rem; font-weight: 800;
  letter-spacing: -0.03em;
}
.section-title em, .hero-title em, .cta-title em { font-style: normal; color: var(--green-deep); }
.kicker {
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; font-weight: 600; font-family: var(--sans);
}

/* 4. Buttons & links
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: .85rem 1.6rem; border-radius: 100px;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .4s var(--ease-out), background .3s, color .3s, border-color .3s;
  white-space: nowrap; font-family: var(--sans);
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-sm { min-height: 38px; padding: .55rem 1.1rem; font-size: .85rem; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(.99); }
/* over hero image */
.hero .btn-ghost { border-color: rgba(255,255,255,.8); color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); }
.link-underline { color: var(--green-text); font-size: .92rem; font-weight: 600; position: relative; display: inline-block; }
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); }

/* 5. Nav — mint green bar (brand)
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--green);
  transition: box-shadow .4s var(--ease-out), padding .4s;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.nav-inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .9rem 0;
}
.nav-logo img { width: 112px; height: auto; }
.nav-links { display: none; gap: 1.8rem; }
.nav-links a { font-size: .92rem; color: var(--ink); font-weight: 500; position: relative; transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: none; align-items: center; gap: 1.2rem; }
.nav-phone { font-size: .9rem; color: var(--ink); font-weight: 500; transition: opacity .3s; }
.nav-phone:hover { opacity: .65; }
.lang-switch { display: flex; gap: .1rem; align-items: center; font-size: .8rem; font-weight: 600; }
.lang-switch a { color: var(--ink); opacity: .7; padding: .35rem .5rem; border-radius: 6px; transition: opacity .2s, background .2s; }
.lang-switch a:hover { opacity: 1; }
.lang-switch a.active { opacity: 1; background: rgba(22,24,26,.16); }
.nav-mobile .lang-switch { margin-top: 1.4rem; font-size: 1rem; }
.nav-mobile .lang-switch a { color: var(--ink); padding: .55rem .8rem; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .35s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 999; background: var(--green);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--ink); }
.nav-mobile .btn { font-family: var(--sans); font-size: 1rem; margin-top: 1rem; }
.nav-mobile .btn-primary { color: #fff; }

/* 6. Hero
   ============================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #16181a; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #16181a; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,12,.40) 0%, transparent 24%, transparent 36%, rgba(10,12,12,.50) 52%, rgba(10,12,12,.74) 74%, rgba(10,12,12,.90) 100%),
    linear-gradient(90deg, rgba(10,12,12,.55) 0%, transparent 65%);
}
.hero-mesh { display: none; }
.hero-inner {
  position: relative; z-index: 2;
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  padding-bottom: clamp(3rem, 9vh, 6rem); max-width: 860px; color: #fff;
}
.hero-title {
  font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.04; margin: 1rem 0; letter-spacing: -0.035em; color: #fff;
}
.hero-title em { color: var(--green); font-style: normal; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255,255,255,.9); max-width: 56ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-rating { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.9); flex-wrap: wrap; }
.hero-rating .stars { color: var(--green); letter-spacing: .1em; }
.hero-rating strong { color: #fff; }
.hero-scroll {
  position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 1.3rem; color: rgba(255,255,255,.85); animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* 7. Strip marquee
   ============================================================= */
.strip { background: var(--ink); color: #fff; overflow: hidden; padding: .85rem 0; }
.strip-track { display: flex; gap: 1.4rem; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.strip-track span { font-family: var(--display); font-weight: 600; font-size: .98rem; letter-spacing: .01em; }
.strip-track i { color: var(--green); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* 8. Why — mint green band
   ============================================================= */
.why { background: var(--green-band); }
.why .eyebrow { color: #16181a; opacity: .65; }
.why-grid { display: grid; gap: 1px; background: rgba(22,24,26,.14); border: 1px solid rgba(22,24,26,.14); border-radius: 14px; overflow: hidden; }
.why-card { background: var(--green-band); padding: 2.2rem 1.9rem; transition: background .4s var(--ease-out); }
.why-card:hover { background: #aadfb4; }
.why-num { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--ink); opacity: .55; display: block; margin-bottom: 1.2rem; }
.why-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; margin-bottom: .6rem; }
.why-card p { color: var(--ink-soft); font-size: .95rem; }

/* 9. Rooms
   ============================================================= */
.rooms-grid { display: grid; gap: 1.6rem; }
.room-card { background: var(--bg); border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: transform .5s var(--ease-out), box-shadow .4s; cursor: pointer; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.10); }
.room-media { aspect-ratio: 4/3; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.room-card:hover .room-media img { transform: scale(1.06); }
.room-body { padding: 1.5rem; }
.room-body h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; margin-bottom: .5rem; }
.room-body p { color: var(--ink-mute); font-size: .92rem; margin-bottom: 1rem; }

/* 10. Dining
   ============================================================= */
.dining { background: var(--bg-soft); }
.dining-grid { display: grid; gap: 1.6rem; }
.dining-card { border-radius: 14px; overflow: hidden; background: var(--bg); border: 1px solid var(--line-2); box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: transform .5s var(--ease-out), box-shadow .4s; cursor: pointer; }
.dining-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.10); }
.dining-media { aspect-ratio: 16/11; overflow: hidden; }
.dining-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.dining-card:hover .dining-media img { transform: scale(1.06); }
.dining-body { padding: 1.5rem; }
.dining-body h3 { font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin-bottom: .5rem; }
.dining-body p { color: var(--ink-mute); font-size: .92rem; margin-bottom: 1rem; }
.dining-feature { margin: 1.6rem 0 0; border-radius: 14px; overflow: hidden; position: relative; }
.dining-feature img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.dining-feature figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.4rem 1.6rem 1.3rem; background: linear-gradient(transparent, rgba(10,12,12,.78)); color: #fff; font-family: var(--display); font-weight: 600; font-size: clamp(.98rem, 2.4vw, 1.15rem); }
@media (max-width: 600px){ .dining-feature img { aspect-ratio: 4/3; } }

/* 11. Experiences
   ============================================================= */
.exp-grid { display: grid; gap: 1.6rem; }
.exp-card { position: relative; border-radius: 14px; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.exp-card:hover img { transform: scale(1.07); }
.exp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,12,12,.88) 100%); }
.exp-overlay { position: relative; z-index: 2; padding: 1.7rem; color: #fff; }
.exp-overlay h3 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; margin-bottom: .5rem; }
.exp-overlay p { color: rgba(255,255,255,.88); font-size: .9rem; }

/* 12. Groups — mint green band
   ============================================================= */
.groups { background: var(--green-band); }
.groups-inner { display: grid; gap: 3rem; align-items: start; }
.groups-lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2rem; max-width: 40ch; }
.groups-list { display: grid; gap: 1.3rem; }
.groups-list li { border-top: 1px solid rgba(22,24,26,.2); padding-top: 1.1rem; }
.groups-list strong { font-family: var(--display); font-weight: 700; font-size: 1.15rem; display: block; margin-bottom: .3rem; }
.groups-list span { color: var(--ink-soft); font-size: .94rem; }

/* 13. Amenities
   ============================================================= */
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.amenities-grid li { background: var(--bg); padding: 1.2rem 1.3rem; font-size: .94rem; color: var(--ink-soft); transition: background .4s; position: relative; padding-left: 2.6rem; }
.amenities-grid li::before { content: "✓"; position: absolute; left: 1.1rem; color: var(--green-text); font-weight: 700; }
.amenities-grid li:hover { background: var(--green-soft); }

/* 14. Location
   ============================================================= */
.location-inner { display: grid; gap: 2.5rem; align-items: center; }
.location-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.location-media img { width: 100%; height: 100%; object-fit: cover; }
.location-text p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 48ch; }
.location-addr { color: var(--ink); font-weight: 600; }
.location-map { margin-top: 2.5rem; border-radius: 14px; overflow: hidden; line-height: 0; box-shadow: 0 1px 2px rgba(0,0,0,.06); border: 1px solid var(--line-2); }
.location-map iframe { display: block; width: 100%; height: 420px; }

/* 15. Testimonials
   ============================================================= */
.testimonials { background: var(--bg-soft); }
.test-grid { display: grid; gap: 1.6rem; }
.test-card { background: var(--bg); border: 1px solid var(--line-2); border-radius: 14px; padding: 1.9rem; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.test-card blockquote { font-family: var(--display); font-weight: 500; font-size: 1.05rem; line-height: 1.5; color: var(--ink); margin-bottom: 1.3rem; }
.test-card blockquote::before { content: "★★★★★"; display: block; color: var(--green-text); font-size: .8rem; letter-spacing: .1em; margin-bottom: .8rem; font-family: var(--sans); }
.test-card figcaption { display: flex; align-items: center; gap: .75rem; }
.test-flag { width: 30px; height: 20px; border-radius: 3px; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.test-who { display: flex; flex-direction: column; }
.test-card figcaption strong { font-family: var(--display); font-weight: 700; }
.test-card figcaption .test-who span { color: var(--ink-mute); font-size: .84rem; }

/* 16. FAQ
   ============================================================= */
.faq-list { display: grid; gap: 0; }
.faq-list details { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--display); font-weight: 700; font-size: 1.12rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--green-deep); font-size: 1.5rem; transition: transform .3s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-soft); margin-top: .9rem; max-width: 70ch; }

/* 17. CTA final — dark band
   ============================================================= */
.cta-final { background: var(--ink); color: #fff; }
.cta-final .cta-block h3 { color: var(--green); }
.cta-inner { display: grid; gap: 3rem; }
.cta-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4.6vw, 3.1rem); margin-bottom: 1rem; max-width: 18ch; color: #fff; letter-spacing: -0.03em; }
.cta-title em { color: var(--green); font-style: normal; }
.cta-text > p { color: rgba(255,255,255,.82); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-final .btn-primary { background: var(--green); color: var(--ink); }
.cta-final .btn-primary:hover { background: #fff; }
.cta-contact { display: grid; gap: 2rem; }
.cta-block h3 { font-family: var(--display); font-weight: 700; font-size: 1rem; margin-bottom: .7rem; }
.cta-block p { color: rgba(255,255,255,.82); font-size: .95rem; margin-bottom: .4rem; }
.cta-block a:hover { color: var(--green); }

/* 18. Footer — dark
   ============================================================= */
.footer { background: #111315; color: #fff; border-top: 4px solid var(--green); padding-top: clamp(3rem, 7vw, 5rem); }
.footer-inner { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { width: 150px; margin-bottom: 1rem; }
.footer-tag { color: rgba(255,255,255,.7); margin-bottom: 1rem; font-size: .95rem; }
.footer-ig { color: var(--green); font-size: .9rem; font-weight: 500; }
.footer-col h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; font-family: var(--sans); font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,.72); font-size: .93rem; padding: .5rem 0; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-legal a:hover { color: var(--green); }
.footer-rnt { font-weight: 500; color: rgba(255,255,255,.7); letter-spacing: .02em; }
.footer-design { width: 100%; font-size: .82rem; color: rgba(255,255,255,.5); margin-top: .2rem; }
.footer-design a { color: var(--green); font-weight: 500; }
.footer-design a:hover { color: #fff; }

/* 19. WhatsApp FAB
   ============================================================= */
.whatsapp-fab {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .4s var(--ease-out);
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* 20. Cookie banner
   ============================================================= */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--ink); color: #fff; border-top: 3px solid var(--green);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; padding: 1rem var(--pad); font-size: .9rem;
}
.cookie[hidden] { display: none; }   /* el atributo hidden debe ocultar la barra */
.cookie .btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.cookie .btn-ghost:hover { background: #fff; color: var(--ink); }
.cookie .btn-primary { background: var(--green); color: var(--ink); }
.cookie .btn-primary:hover { background: #fff; }
.cookie-actions { display: flex; gap: .7rem; }

/* 21. Reveal animations
   ============================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* 21b. Hero booking bar + meta
   ============================================================= */
.bookbar {
  display: flex; flex-wrap: wrap; gap: .6rem; align-items: flex-end;
  background: rgba(255,255,255,.97); padding: .8rem; border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0,0,0,.28); max-width: 580px; margin-bottom: 1.1rem;
}
.bookbar-field { display: flex; flex-direction: column; gap: .25rem; flex: 1 1 150px; }
.bookbar-field label { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; padding-left: .2rem; }
.bookbar-field input { font-family: var(--sans); font-size: .95rem; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; padding: .7rem .8rem; background: #fff; min-height: 46px; width: 100%; }
.bookbar-field input:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 1px; }
.bookbar-btn { flex: 1 1 120px; min-height: 46px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.3rem; margin-bottom: 1.4rem; }
.hero-guarantee { color: #fff; font-size: .92rem; font-weight: 500; }
.hero-link { color: #fff; font-size: .92rem; font-weight: 600; opacity: .92; }
.hero-link:hover { opacity: 1; text-decoration: underline; }
.hero-rating { gap: .55rem; flex-wrap: wrap; }
.hero-rating .award { background: var(--green); color: var(--ink); font-weight: 700; font-size: .8rem; padding: .28rem .75rem; border-radius: 100px; font-family: var(--display); letter-spacing: -0.01em; }
.hero-rating strong { color: #fff; }
.hero-dot { opacity: .5; }

/* 21c. Trust band
   ============================================================= */
.trust { background: var(--ink); color: #fff; padding: 1.5rem 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem 2.6rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: #fff; transition: opacity .3s; }
a.trust-item:hover { opacity: .78; }
.trust-item > strong { font-family: var(--display); font-size: 1.8rem; font-weight: 800; color: var(--green); line-height: 1; }
.trust-item > span { display: flex; flex-direction: column; font-size: .9rem; line-height: 1.25; }
.trust-item small { color: rgba(255,255,255,.55); font-size: .75rem; }
.trust-badge-img { height: 56px; width: auto; display: block; }
.trust-award > span { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.trust-award strong { color: var(--green); }
.trust-award small { font-family: var(--sans); font-weight: 400; }

/* 21d. Distances
   ============================================================= */
.distances { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; margin: 1.4rem 0 1.7rem; }
.distances li { display: flex; flex-direction: column; border-left: 2px solid var(--green); padding-left: .85rem; }
.distances strong { font-family: var(--display); font-weight: 800; font-size: 1.05rem; }
.distances span { color: var(--ink-mute); font-size: .88rem; }

/* 21e. Nomad
   ============================================================= */
.nomad { background: var(--bg-soft); }
.nomad-inner { display: grid; gap: 2.5rem; align-items: center; }
.nomad-text p { color: var(--ink-soft); max-width: 46ch; }
.nomad-list { display: grid; gap: 1.1rem; }
.nomad-list li { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 1rem; }
.nomad-list strong { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: .2rem; }
.nomad-list span { color: var(--ink-soft); font-size: .92rem; }

/* 21b. Story / brand (industrial heritage)
   ============================================================= */
.story { background: var(--ink); color: #fff; }
.story .eyebrow { color: var(--green); }
.story .section-title { color: #fff; }
.story-grid { display: grid; gap: 2.2rem; align-items: center; margin-bottom: 2.5rem; }
.story-text p { color: rgba(255,255,255,.82); margin-bottom: 1.1rem; max-width: 54ch; }
.story-feature { border-radius: 14px; overflow: hidden; margin: 0; }
.story-feature img { width: 100%; aspect-ratio: 16/10; object-fit: cover; filter: grayscale(1) contrast(1.06); display: block; }
.story-feature figcaption, .story-strip figcaption { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .6rem; letter-spacing: .02em; }
.story-strip { display: grid; gap: 1.4rem; }
.story-strip figure { margin: 0; }
.story-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; display: block; }
.story-strip figure:not(.story-now) img { filter: grayscale(1) contrast(1.06); }
.story-now img { filter: saturate(1.03); }
.story-now figcaption { color: var(--green); }
.story-credit { font-size: .76rem; color: rgba(255,255,255,.38); margin-top: 1.8rem; }

/* 22. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .dining-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .cta-inner { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .cta-contact { grid-template-columns: 1fr 1fr; }
  .location-inner { grid-template-columns: 1fr 1fr; }
  .groups-inner { grid-template-columns: 1fr 1fr; }
  .nomad-inner { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1.1fr 1fr; }
  .story-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-toggle { display: none; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
  .dining-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 23. Reduced motion
   ============================================================= */
/* En móvil el recorte vertical corta la cama (que está a la derecha de la foto):
   desplazamos el encuadre hacia la derecha para que la cama sea visible. */
@media (max-width: 719px) {
  .hero-bg img { object-position: 74% 50%; }
}

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

@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
  .hero-scroll { animation: none; }
  .splash-logo { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* --- Sección Mascotas (pet-friendly) --- */
.pets-inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px){ .pets-inner { grid-template-columns: 1.05fr .95fr; } }
.pets-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
.pets-media img { width: 100%; height: 100%; object-fit: cover; }
.pets-grid { display: grid; gap: 1.6rem 1.9rem; margin-top: 1.9rem; }
@media (min-width: 560px){ .pets-grid { grid-template-columns: 1fr 1fr; } }
.pets-grid strong { font-family: var(--display); font-weight: 700; font-size: 1.15rem; display: block; margin-bottom: .35rem; color: var(--ink); }
.pets-grid span { color: var(--ink-mute); font-size: .93rem; line-height: 1.55; }
/* --- Galería (grid bento con foto destacada) --- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
@media (min-width: 700px){ .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.gallery-item { margin: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* --- Lightbox de la galería --- */
.gallery-item img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,24,12,.93);
  display: none; align-items: center; justify-content: center; padding: 5vh 5vw; opacity: 0; transition: opacity .3s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.lb-figure img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; border-radius: 8px;
  object-fit: contain; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.lb-figure figcaption { color: rgba(255,255,255,.8); font-family: var(--sans); font-size: .88rem; text-align: center; max-width: 60ch; }
.lb-close, .lb-nav { position: fixed; color: #fff; background: rgba(255,255,255,.14); border-radius: 50%;
  display: grid; place-items: center; line-height: 1; transition: background .3s, color .3s, transform .3s; }
.lb-close { top: 1.1rem; right: 1.3rem; width: 46px; height: 46px; font-size: 1.9rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 2rem; }
.lb-prev { left: 1.1rem; } .lb-next { right: 1.1rem; }
.lb-close:hover, .lb-nav:hover { background: var(--green); color: var(--ink); }
@media (max-width: 600px){ .lb-nav { width: 42px; height: 42px; font-size: 1.7rem; } .lb-prev { left: .4rem; } .lb-next { right: .4rem; } }
