/* ------------------------------------------------------------------
   Tu Pausa Ideal — landing styles
   Mobile-first. Editorial. Earthy palette.
------------------------------------------------------------------ */

:root {
  --bg: #f6f2ec;
  --bg-alt: #efe9df;
  --surface: #ffffff;
  --ink: #1f2420;
  --ink-soft: #51584f;
  --ink-muted: #8a8d84;
  --line: #e3ddd2;
  --accent: #2f3a2d;
  --accent-2: #8a6b3b;
  --accent-soft: #e8e3d3;
  --wa: #25d366;
  --wa-ink: #075e54;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 20, .06), 0 2px 8px rgba(20, 24, 20, .04);
  --shadow: 0 10px 30px rgba(20, 24, 20, .08);
  --shadow-lg: 0 20px 60px rgba(20, 24, 20, .18);
  --container: 1200px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 68px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 14px;
  border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

.js-decoy {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled,
body.is-legal-page .site-header {
  background: rgba(246, 242, 236, .85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: 1.05rem;
  transition: color .3s var(--ease);
}
.site-header.is-scrolled .brand,
body.is-legal-page .site-header .brand { color: var(--ink); }
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #c9b28c, #2f3a2d 70%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
}
.site-nav { display: none; }
.site-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px;
}
.site-nav a {
  color: #fff; font-size: .92rem; font-weight: 500;
  position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.site-header.is-scrolled .site-nav a,
body.is-legal-page .site-header .site-nav a { color: var(--ink); }
.site-nav a::after {
  content: ""; position: absolute; inset: auto 0 -2px 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-lang { display: inline-flex; gap: 4px; }
.lang-pill {
  font-size: .78rem; font-weight: 600; letter-spacing: .5px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.35);
  transition: all .25s var(--ease);
}
.lang-pill:hover { background: rgba(255,255,255,.15); }
.lang-pill.is-active { background: #fff; color: var(--accent); border-color: #fff; }
.site-header.is-scrolled .lang-pill,
body.is-legal-page .site-header .lang-pill { color: var(--ink); border-color: var(--line); }
.site-header.is-scrolled .lang-pill.is-active,
body.is-legal-page .site-header .lang-pill.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .2px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #25301f; box-shadow: var(--shadow); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fbb5c; box-shadow: 0 10px 30px rgba(37, 211, 102, .35); }
.btn-lg {
  padding: 18px 24px; min-height: 64px;
  text-align: left;
}
.btn-lg span { display: inline-flex; flex-direction: column; gap: 2px; }
.btn-lg small { font-size: .72rem; font-weight: 500; opacity: .85; letter-spacing: .4px; text-transform: uppercase; }
.btn-lg strong { font-size: 1.05rem; font-weight: 700; letter-spacing: .3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 48px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.5, 0, .2, 1);
  will-change: opacity;
}
.hero-slide.is-active,
.hero-slide.is-leaving { z-index: 1; }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-leaving { opacity: 0; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.15);
  will-change: transform;
}
.hero-slide.is-active img,
.hero-slide.is-leaving img {
  animation: heroKen1 9s cubic-bezier(.22, .6, .25, 1) forwards;
}
.hero-slide:nth-child(3n+2).is-active img,
.hero-slide:nth-child(3n+2).is-leaving img { animation-name: heroKen2; }
.hero-slide:nth-child(3n).is-active img,
.hero-slide:nth-child(3n).is-leaving img { animation-name: heroKen3; }
@keyframes heroKen1 {
  from { transform: scale(1.18) translate3d(0, 0, 0); }
  to   { transform: scale(1.02) translate3d(0, -2%, 0); }
}
@keyframes heroKen2 {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}
@keyframes heroKen3 {
  from { transform: scale(1.12) translate3d(2%, 0, 0); }
  to   { transform: scale(1.04) translate3d(-1%, 2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide img, .hero-slide.is-active img { animation: none; transform: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20,24,20,.25) 0%, rgba(20,24,20,.15) 35%, rgba(20,24,20,.85) 100%),
    linear-gradient(90deg, rgba(20,24,20,.35), rgba(20,24,20,0) 60%);
}

.hero-inner { position: relative; }
.eyebrow {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: currentColor; vertical-align: middle; margin-right: 12px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 6.8vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 22ch;
}
.hero-title span { display: block; }
.hero-title em {
  font-style: italic; font-weight: 400;
  color: #e8d9b3;
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 52ch;
  color: rgba(255,255,255,.9);
  margin: 0 0 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-facts {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin: 0; padding: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  max-width: 560px;
}
.hero-facts > div {
  display: flex; flex-direction: column; gap: 2px;
  padding-right: 14px;
}
.hero-facts dt {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin: 0;
}
.hero-facts dd {
  margin: 0; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500;
  color: #fff;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 20px;
  display: none;
}
.scroll-cue span {
  display: block; width: 3px; height: 6px;
  margin: 6px auto 0;
  background: #fff; border-radius: 2px;
  animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Sections ---------- */
.section {
  padding: 72px 0;
  position: relative;
}
.section-about { background: var(--bg); }
.section-amenities { background: var(--bg-alt); }
.section-gallery { background: var(--bg); }
.section-included { background: var(--bg-alt); }
.section-faq { background: var(--bg); }
.section-location { background: var(--bg-alt); }
.section-contact {
  background: var(--accent);
  color: #fff;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  max-width: 20ch;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 24px;
}
.section-contact .section-lead { color: rgba(255,255,255,.85); }
.section-contact .eyebrow { color: #d6c08b; }
.section-head { margin-bottom: 36px; max-width: 60ch; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .section-title,
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Amenities ---------- */
.amenities-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.amenity-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 12px;
}
.amenity-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.amenity-item:hover .amenity-icon {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.amenity-label {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.amenity-desc {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 22ch;
}

/* ---------- Included / Price ---------- */
.included-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
}
.included-price {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.included-price-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.included-price-unit {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.included-list {
  list-style: none; padding: 0; margin: 0;
  text-align: left;
}
.included-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}
.included-list li:last-child { border-bottom: 0; }
.included-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  padding: 5px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}
.included-deposit {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  text-align: left;
}
.included-deposit-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.included-deposit-value { color: var(--accent-2); }
.included-deposit-note {
  margin: 6px 0 0;
  font-size: .85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-q:hover { color: var(--accent); }
.faq-q-text { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-a {
  margin: 0 0 22px 4px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 70ch;
}

@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .amenity-item { padding: 24px 8px; }
  .included-card { padding: 48px 40px; }
  .faq-q { padding: 26px 4px; font-size: 1.25rem; }
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.about-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.about-features li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-features li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-icon {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.feat-label { margin: 0; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.feat-value { margin: 2px 0 0; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
}
.gallery-item:hover img,
.gallery-btn:focus-visible img { transform: scale(1.05); }
.gallery-btn {
  appearance: none; -webkit-appearance: none;
  background: none; border: 0; padding: 0; margin: 0;
  width: 100%; height: 100%;
  display: block;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: inherit;
}
.gallery-btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .9), 0 0 0 3px var(--accent);
}

/* ---------- Lightbox ---------- */
.no-scroll { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 12, 10, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox-figure {
  margin: 0;
  max-width: min(94vw, 1400px);
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  animation: lightboxIn .4s var(--ease);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  color: rgba(255, 255, 255, .6);
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.lightbox button {
  position: absolute;
  appearance: none; -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.lightbox button:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); }
.lightbox button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-close:hover { transform: scale(1.06); }
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next {
    top: auto; bottom: 20px; transform: none;
  }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .lightbox-prev:hover, .lightbox-next:hover { transform: scale(1.06); }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-img { max-height: 72vh; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-img { transition: none; animation: none; }
}

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--bg-alt);
  padding: calc(var(--header-h) + 56px) 0 48px;
  border-bottom: 1px solid var(--line);
}
.legal-breadcrumb {
  margin: 0 0 18px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.legal-breadcrumb a {
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.legal-breadcrumb a:hover { color: var(--accent); }
.legal-title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.legal-meta {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.legal-article {
  background: var(--bg);
  padding: 64px 0 96px;
}
.legal-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.legal-sidenav {
  position: relative;
}
.legal-sidenav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.legal-sidenav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.legal-sidenav a:hover { color: var(--ink); background: var(--accent-soft); }
.legal-sidenav a.is-active {
  background: var(--accent);
  color: #fff;
}
.legal-body {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}
.legal-body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { margin: 0 0 16px; color: var(--ink-soft); }
.legal-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
}
.legal-body ul li { margin-bottom: 8px; }
.legal-body ul.legal-data {
  list-style: none;
  padding: 18px 22px;
  margin: 0 0 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.legal-body ul.legal-data li { margin-bottom: 6px; color: var(--ink); }
.legal-body ul.legal-data li:last-child { margin-bottom: 0; }
.legal-body ul.legal-data strong { color: var(--ink-muted); font-weight: 600; min-width: 120px; display: inline-block; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .2s var(--ease);
}
.legal-body a:hover { color: var(--ink); }
.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.legal-back a {
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.legal-back a:hover { color: var(--accent); }

@media (min-width: 900px) {
  .legal-hero { padding: calc(var(--header-h) + 80px) 0 64px; }
  .legal-article { padding: 80px 0 120px; }
  .legal-container {
    grid-template-columns: 220px 1fr;
    gap: 80px;
  }
  .legal-sidenav ul {
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 0;
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
  .legal-sidenav a { display: block; padding: 10px 16px; }
  .legal-body { font-size: 1.05rem; }
  .legal-body h2 { font-size: 1.65rem; }
}

/* Location */
.location-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: center;
}
.location-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.location-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.location-card {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.92);
  padding: 14px 18px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.location-card-city {
  margin: 0; font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em;
}
.location-card-region { margin: 2px 0 0; font-size: .85rem; color: var(--ink-soft); }

/* Contact */
.section-contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(200, 172, 120, .18), transparent 60%),
    radial-gradient(600px 300px at 80% 100%, rgba(200, 172, 120, .12), transparent 60%);
  pointer-events: none;
}
.contact-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.section-contact .section-title { margin-left: auto; margin-right: auto; }
.section-contact .section-lead { margin-left: auto; margin-right: auto; }
.contact-buttons {
  display: grid; grid-template-columns: 1fr;
  gap: 14px; margin-top: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #16170f;
  color: rgba(255,255,255,.72);
  padding: 56px 0 32px;
  font-size: .92rem;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  text-align: center;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  color: #fff;
}
.footer-brand-row {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem;
}
.footer-tagline {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .58);
  max-width: 38ch;
}
.footer-meta p { margin: 4px 0; }
.footer-meta a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-lang { display: inline-flex; gap: 6px; justify-content: center; }
.footer-lang a {
  padding: 4px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  font-size: .78rem; letter-spacing: .5px; font-weight: 600;
  transition: all .25s var(--ease);
}
.footer-lang a.is-active, .footer-lang a:hover { background: #fff; color: #000; border-color: #fff; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  justify-content: center;
  font-size: .82rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, .68);
  transition: color .2s var(--ease);
}
.footer-legal a:hover { color: #fff; }
.footer-credit {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .55);
}
.footer-credit a {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer-credit a:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- Floating actions (mobile) ---------- */
.float-call, .float-wa {
  position: fixed; z-index: 60;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.float-call { right: 16px; bottom: 16px; background: var(--accent); color: #fff; }
.float-wa { right: 16px; bottom: 80px; background: var(--wa); color: #fff; }
.float-call:hover, .float-wa:hover { transform: scale(1.06); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .hero-facts { grid-template-columns: repeat(3, 1fr); }
  .hero-facts > div + div { border-left: 1px solid rgba(255,255,255,.2); padding-left: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-buttons { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.2fr auto 1fr; text-align: left; align-items: start; gap: 40px; }
  .footer-brand { align-items: flex-start; }
  .footer-lang { justify-content: flex-end; }
  .footer-credit { grid-column: 1 / -1; text-align: center; }
}

@media (min-width: 900px) {
  :root { --header-h: 80px; }
  .section { padding: 110px 0; }
  .site-nav { display: block; }
  .scroll-cue { display: block; }
  .hero { padding-bottom: 80px; }
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
  .location-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .float-call, .float-wa { display: none; }
}

@media (min-width: 1200px) {
  .hero-title { font-size: 5.6rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; grid-row: span 2; }
}
