/* =========================================================
   Camping Aneto · Hoja de estilos principal
   Lares Gestión y Consultoría · 2026
   ========================================================= */

/* ---------- Self-hosted fonts (RGPD + perf) ---------- */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/lato-400.woff2') format('woff2');
  unicode-range: U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/lato-700.woff2') format('woff2');
  unicode-range: U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/karla-700.woff2') format('woff2');
  unicode-range: U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/karla-800.woff2') format('woff2');
  unicode-range: U+0000-024F, U+0259, U+1E00-1EFF, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand greens (identity, untouched) */
  --theme-green: #009681;
  --theme-deep-green: #0C7D6D;
  --theme-green-dark: #074a40;
  --theme-green-tint: #e6f4f1;

  /* Warmth accents extracted from logo gradient (sunrise hues) */
  --theme-sunset: #d65f2f;
  --theme-amber: #f4b740;
  --theme-sunset-tint: #fcefd9;

  /* Neutrals tinted toward brand hue (no pure black or white) */
  --theme-ink: #0a1f1c;
  --theme-text: #2a3433;
  --theme-grey: #5d6967;
  --theme-line: #e3e5e2;
  --theme-bg: #fbfbf8;
  --theme-bg-soft: #f3f1ea;

  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Karla", "Lato", system-ui, sans-serif;

  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 96px;
  --space-9: 144px;

  --shadow-sm: 0 1px 2px rgba(7,40,36,.06), 0 2px 8px rgba(7,40,36,.05);
  --shadow-md: 0 4px 12px rgba(7,40,36,.09), 0 12px 32px rgba(7,40,36,.07);
  --shadow-lg: 0 12px 32px rgba(7,40,36,.14), 0 32px 64px rgba(7,40,36,.09);

  /* Motion */
  --motion-fast: 200ms;
  --motion-base: 350ms;
  --motion-slow: 700ms;
  --motion-hero: 1200ms;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: var(--ease-out-quart);
}

/* ---------- Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--theme-text);
  background: var(--theme-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--theme-deep-green); text-decoration: none; transition: color .2s var(--ease); }
a:hover, a:focus-visible { color: var(--theme-green-dark); text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--theme-green); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--theme-ink);
  margin: 0 0 var(--space-3);
}
h1 { font-size: clamp(2.6rem, 8vw + .5rem, 6rem); letter-spacing: -0.04em; line-height: 0.98; }
h2 { font-size: clamp(1.8rem, 4vw + .5rem, 3.4rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.4vw + .5rem, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 var(--space-3); }
small { font-size: .85rem; color: var(--theme-grey); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--theme-deep-green);
  margin-bottom: var(--space-3);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-4); }
.container--narrow { max-width: var(--container-narrow); }
section { padding-block: clamp(var(--space-7), 9vw, var(--space-9)); }
.section-head { max-width: 720px; margin-bottom: var(--space-6); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
}
.btn:hover, .btn:focus-visible { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--theme-deep-green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--theme-green-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--theme-deep-green); border-color: currentColor; }
.btn--ghost:hover { background: var(--theme-green-tint); color: var(--theme-green-dark); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--white { background: #fff; color: var(--theme-deep-green); }
.btn--white:hover { background: var(--theme-green-tint); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--theme-line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: 14px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--theme-black);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__logo:hover { text-decoration: none; }
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  object-fit: contain;
}
img.nav__logo-mark { width: 48px; height: 48px; }
.nav__links { display: none; margin-left: auto; gap: var(--space-4); list-style: none; padding: 0; margin: 0 0 0 auto; }
.nav__links a { color: var(--theme-text); font-weight: 500; font-size: .95rem; }
.nav__links a:hover { color: var(--theme-deep-green); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: var(--space-3); margin-left: auto; }
@media (min-width: 880px) {
  .nav__links { display: flex; margin-left: var(--space-5); margin-right: auto; }
  .nav__actions { margin-left: 0; }
}

/* Language switcher */
.lang {
  position: relative;
  font-family: var(--font-display);
  font-size: .9rem;
}
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--theme-line);
  background: #fff;
  color: var(--theme-text);
  font-weight: 600;
}
.lang__toggle:hover { border-color: var(--theme-green); color: var(--theme-deep-green); }
.lang__menu {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--theme-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px;
  min-width: 160px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 60;
}
.lang.is-open .lang__menu { display: block; }
.lang__menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--theme-text);
  font-weight: 500;
}
.lang__menu a:hover { background: var(--theme-green-tint); color: var(--theme-deep-green); text-decoration: none; }
.lang__menu a[aria-current="page"] { background: var(--theme-green); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--theme-black);
  color: #fff;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0a2620;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(7,40,36,.65) 0%, rgba(7,40,36,.15) 50%, rgba(0,0,0,0) 75%);
  z-index: 1;
}
.hero__inner {
  padding-block: clamp(var(--space-7), 18vw, 180px);
  padding-bottom: clamp(110px, 18vw, 180px);
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 879px) {
  .nav__logo { font-size: .95rem; }
  .nav__logo-mark { width: 32px; height: 32px; }
}
@media (max-width: 600px) {
  .nav__inner { gap: var(--space-3); padding-block: 10px; }
  .nav__actions { gap: 8px; margin-left: auto; }
  .nav__actions .btn--primary { display: none; }
  .lang__toggle { padding: 7px 10px; font-size: .85rem; }
  img.nav__logo-mark { width: 38px; height: 38px; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-amber);
  margin-bottom: var(--space-4);
  width: max-content;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  color: #fbfbf8;
  max-width: 17ch;
  font-size: clamp(3rem, 9.5vw + .5rem, 7rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero__sub {
  max-width: 52ch;
  font-size: clamp(1.1rem, 1vw + .95rem, 1.45rem);
  color: rgba(251,251,248,.88);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: var(--space-5);
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-5);
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.hero__meta span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__play {
  position: absolute;
  right: clamp(var(--space-4), 5vw, var(--space-7));
  bottom: clamp(var(--space-4), 5vw, var(--space-6));
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.hero__play:hover { background: rgba(255,255,255,.22); }
.hero__play-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--theme-deep-green);
}

/* ---------- Reputation banner (inline, not card-template) ---------- */
.reputation {
  background: var(--theme-bg-soft);
  border-block: 1px solid var(--theme-line);
  padding-block: var(--space-4);
  font-family: var(--font-display);
}
.reputation__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: var(--space-2) var(--space-5);
  color: var(--theme-text);
  font-size: .95rem;
}
.reputation b {
  font-weight: 700;
  color: var(--theme-deep-green);
  font-variant-numeric: tabular-nums;
}
.reputation__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--theme-grey);
  opacity: .5;
  display: inline-block;
}

/* ---------- Video section ---------- */
.video-section { background: var(--theme-black); color: #fff; }
.video-section h2 { color: #fff; }
.video-section p { color: rgba(255,255,255,.8); max-width: 60ch; }

.video-facade {
  position: relative;
  margin-top: var(--space-6);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--theme-ink);
}
.video-facade img,
.video-facade .video-facade__poster,
.video-facade video {
  width: 100%; height: 100%; object-fit: cover;
  background: var(--theme-ink);
  position: absolute;
  inset: 0;
  display: block;
}
button.video-facade__play {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: opacity var(--motion-base) var(--ease-out-quart);
}
.video-facade.is-playing > .video-facade__play {
  opacity: 0;
  pointer-events: none;
}
.video-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.45) 100%);
}
.video-facade__btn {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--theme-deep-green);
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform .25s var(--ease);
}
.video-facade:hover .video-facade__btn { transform: scale(1.08); }

/* ---------- Cards / lodging grid ---------- */
.lodging-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 720px) {
  .lodging-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: dense;
  }
  .lodging-grid > .card { grid-column: span 2; }
  .lodging-grid > .card--feature { grid-column: span 3; }
  .lodging-grid > .card--wide { grid-column: span 4; }
}
.card {
  background: #fff;
  border: 1px solid var(--theme-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--theme-sunset-tint) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--motion-base) var(--ease-out-quart);
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-sunset) 0%, var(--theme-amber) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-slow) var(--ease-out-expo);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-sunset);
}
.card:hover::before { opacity: 1; }
.card:hover::after { transform: scaleX(1); }
.card__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); position: relative; }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--theme-black); margin: 0; }
.card--feature .card__title { font-size: clamp(1.4rem, 1.6vw + .8rem, 2rem); letter-spacing: -.015em; }
.card--feature .card__desc { font-size: 1rem; }
.card__count {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--theme-deep-green);
  background: var(--theme-green-tint);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.card__desc { color: var(--theme-grey); font-size: .95rem; margin: 0; position: relative; }
.card__cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--theme-text);
  font-weight: 600;
  position: relative;
}

/* ---------- Environment section ---------- */
.env { background: var(--theme-bg-soft); }
.env__layout {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .env__layout { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
/* Monumental peak: one big number, not a grid of stats */
.env__monument {
  margin-block: var(--space-6) var(--space-4);
  border-top: 1px solid var(--theme-line);
  padding-top: var(--space-5);
}
.env__monument-figure {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.env__monument-figure strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 14vw + 1rem, 11rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--theme-deep-green);
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.env__monument-figure sup {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw + .8rem, 1.6rem);
  color: var(--theme-grey);
  top: -.4em;
  letter-spacing: 0;
}
.env__monument-caption {
  margin: var(--space-3) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, .5vw + .9rem, 1.2rem);
  color: var(--theme-text);
  max-width: 36ch;
  font-weight: 500;
}
.env__monument-caption b {
  color: var(--theme-ink);
  font-weight: 700;
}
/* Secondary stats inline as a sentence */
.env__inline-stats {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--theme-grey);
}
.env__inline-stats b {
  color: var(--theme-deep-green);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.env__list {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  display: grid;
  gap: var(--space-3);
}
.env__list li {
  display: flex;
  gap: 14px;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--theme-line);
}
.env__list li:first-child { border-top: 0; padding-top: 0; }
.env__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--theme-black);
  margin-bottom: 2px;
}
.env__list span { color: var(--theme-grey); font-size: .95rem; }
.env__icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--theme-green-tint);
  color: var(--theme-deep-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  margin-top: var(--space-6);
}
@media (min-width: 760px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc {
  border: 1px solid var(--theme-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: #fff;
}
.svc__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-3);
}
.svc--included .svc__tag { background: var(--theme-green-tint); color: var(--theme-deep-green); }
.svc--paid .svc__tag { background: #fff4e5; color: #b15500; }
.svc--access .svc__tag { background: #eaeefc; color: #2a4eaf; }
.svc h3 { margin-bottom: var(--space-3); }
.svc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.svc li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--theme-text);
}
.svc li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px; height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--theme-green);
}

/* ---------- Practical info ---------- */
.info { background: var(--theme-bg-soft); }
.info__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  margin-top: var(--space-6);
}
@media (min-width: 760px) {
  .info__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.info-block {
  background: #fff;
  border: 1px solid var(--theme-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.info-block h3 { margin-bottom: var(--space-3); }
.schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.schedule tr { border-bottom: 1px solid var(--theme-line); }
.schedule tr:last-child { border-bottom: 0; }
.schedule td { padding: 10px 0; vertical-align: top; }
.schedule td:first-child { padding-right: var(--space-3); color: var(--theme-text); }
.schedule td:last-child { font-family: var(--font-display); font-weight: 700; color: var(--theme-deep-green); text-align: right; white-space: nowrap; }

.tagline {
  display: inline-block;
  background: var(--theme-green-tint);
  color: var(--theme-deep-green);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-3);
}
.info-block p { font-size: .95rem; color: var(--theme-text); margin: 0 0 var(--space-2); }
.info-block ul { padding-left: 1.2em; margin: 0 0 0; }
.info-block li { margin-bottom: 6px; font-size: .95rem; }
.info-block li::marker { color: var(--theme-green); }

/* ---------- Location ---------- */
.loc__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .loc__grid { grid-template-columns: 1.2fr 1fr; }
}
.loc__map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--theme-line);
  background: var(--theme-bg-soft);
}
.loc__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc__contact {
  display: grid;
  gap: var(--space-3);
}
.contact-row {
  display: flex;
  gap: 14px;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--theme-line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row strong { font-family: var(--font-display); display: block; color: var(--theme-black); margin-bottom: 2px; }
.contact-row a { color: var(--theme-deep-green); font-weight: 600; }
.contact-row__icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--theme-green-tint);
  color: var(--theme-deep-green);
  display: inline-flex; align-items: center; justify-content: center;
}
.langs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-2);
}
.langs-row span {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--theme-green-tint);
  color: var(--theme-deep-green);
}

/* ---------- FAQ ---------- */
.faq__list {
  margin-top: var(--space-6);
  border-top: 1px solid var(--theme-line);
}
.faq__item { border-bottom: 1px solid var(--theme-line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--theme-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.faq__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--theme-deep-green);
  transition: transform .2s var(--ease);
  flex: 0 0 auto;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 0 var(--space-4);
  color: var(--theme-text);
  font-size: 1rem;
  max-width: 70ch;
}
.faq__a p { margin: 0 0 var(--space-2); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery {
  background: var(--theme-bg-soft);
}
.gallery__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--space-6);
  grid-auto-rows: 220px;
}
@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--theme-deep-green);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
}

/* ---------- Reviews QR block ---------- */
.reviews {
  background: #fff;
  border-block: 1px solid var(--theme-line);
}
.reviews__inner {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) {
  .reviews__inner { grid-template-columns: auto 1fr; gap: var(--space-6); }
}
.reviews__qr {
  width: 160px;
  height: 160px;
  flex: 0 0 160px;
  border: 1px solid var(--theme-line);
  border-radius: var(--radius-md);
  padding: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
}
.reviews__qr img { width: 100%; height: 100%; object-fit: contain; display: block; }
.reviews__copy h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.4rem;
}
.reviews__copy p {
  color: var(--theme-grey);
  margin: 0 0 var(--space-3);
  max-width: 56ch;
}
.reviews__stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--theme-deep-green);
  font-size: .95rem;
}
.reviews__stars span:first-child { color: #f59e0b; letter-spacing: 2px; }

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--theme-deep-green) 0%, var(--theme-green-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.85); max-width: 50ch; margin-inline: auto; margin-bottom: var(--space-5); }
.cta-final .btn { box-shadow: 0 16px 40px rgba(0,0,0,.25); }

/* ---------- Footer ---------- */
.footer {
  background: var(--theme-black);
  color: rgba(255,255,255,.75);
  padding-block: var(--space-7);
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer a { color: #fff; }
.footer a:hover { color: var(--theme-green-tint); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer__bottom a { color: rgba(255,255,255,.85); }

/* ---------- Floating CTA (mobile) ---------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--theme-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  text-decoration: none;
}
.fab:hover { background: var(--theme-deep-green); color: #fff; text-decoration: none; }
@media (min-width: 880px) { .fab { display: none; } }

/* ---------- Legal pages ---------- */
.legal-page {
  padding-block: clamp(var(--space-6), 6vw, var(--space-8));
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.legal-page__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--theme-deep-green);
  margin-bottom: var(--space-3);
}
.legal-page h1 {
  font-size: clamp(1.9rem, 3.5vw + .5rem, 3rem);
  margin-bottom: var(--space-3);
}
.legal-meta {
  font-family: var(--font-display);
  color: var(--theme-grey);
  font-size: .92rem;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--theme-line);
  line-height: 1.6;
}
.legal-meta b { color: var(--theme-ink); font-weight: 700; }
.legal-page h2 {
  font-size: clamp(1.15rem, 1vw + .85rem, 1.4rem);
  letter-spacing: -.01em;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--theme-ink);
  font-weight: 700;
}
.legal-page h3 {
  font-size: 1.05rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}
.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--theme-text);
  margin-bottom: var(--space-3);
}
.legal-page ol,
.legal-page ul {
  padding-left: 1.3em;
  margin-bottom: var(--space-4);
}
.legal-page ol li,
.legal-page ul li {
  padding-left: 0.3em;
  margin-bottom: var(--space-2);
}
.legal-page li::marker {
  color: var(--theme-deep-green);
  font-weight: 700;
}
.legal-page strong,
.legal-page b {
  color: var(--theme-ink);
  font-weight: 700;
}
.legal-page__back {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--theme-line);
}
.legal-page__back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-deep-green);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}
.legal-page__back a:hover { color: var(--theme-green-dark); }
.legal-page__back a::before {
  content: "←";
  font-size: 1.2rem;
  transition: transform var(--motion-fast) var(--ease-out-quart);
}
.legal-page__back a:hover::before { transform: translateX(-4px); }
.legal-page__index {
  display: grid;
  gap: 4px;
  margin: var(--space-5) 0 var(--space-6);
  padding: var(--space-4);
  background: var(--theme-bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--theme-line);
  font-family: var(--font-display);
  font-size: .92rem;
}
.legal-page__index a {
  color: var(--theme-text);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.legal-page__index a:hover {
  color: var(--theme-deep-green);
  text-decoration: none;
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--theme-deep-green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 0; text-decoration: none; color: #fff; }

/* ---------- Motion: reveal infrastructure ---------- */
@keyframes heroBackdropFade {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ambientFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

.hero__bg { animation: heroBackdropFade var(--motion-hero) var(--ease-out-expo) both; }
.hero__media::after { animation: heroBackdropFade 1.6s var(--ease-out-quart) both; animation-delay: 200ms; }
.hero__eyebrow,
.hero h1,
.hero__sub,
.hero__meta,
.hero__cta {
  opacity: 0;
  animation: heroFadeUp var(--motion-slow) var(--ease-out-quart) both;
}
.hero__eyebrow { animation-delay: 350ms; }
.hero h1       { animation-delay: 500ms; }
.hero__sub     { animation-delay: 750ms; }
.hero__meta    { animation-delay: 950ms; }
.hero__cta     { animation-delay: 1150ms; }
.hero__play {
  opacity: 0;
  animation: heroFadeUp var(--motion-slow) var(--ease-out-quart) 1400ms both,
             ambientFloat 6s ease-in-out 2400ms infinite;
}

/* Scroll-triggered reveals (toggled by JS via .is-revealed) */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity var(--motion-slow) var(--ease-out-quart),
    transform var(--motion-slow) var(--ease-out-quart);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity var(--motion-slow) var(--ease-out-quart),
    transform var(--motion-slow) var(--ease-out-quart);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}
[data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Gallery items get a subtle scale-in as well */
.gallery__item img {
  transition:
    transform 800ms var(--ease-out-quart),
    filter var(--motion-base) var(--ease-out-quart);
}
.gallery__item {
  transform: translate3d(0, 0, 0);
  transition: box-shadow var(--motion-base) var(--ease-out-quart);
}
.gallery__item:hover { box-shadow: var(--shadow-md); }
.gallery__item:hover img { transform: scale(1.06); }

/* Service blocks: accent border-top on hover */
.svc {
  position: relative;
  transition: transform var(--motion-base) var(--ease-out-quart), box-shadow var(--motion-base) var(--ease-out-quart);
}
.svc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__bg,
  .hero__eyebrow,
  .hero h1,
  .hero__sub,
  .hero__meta,
  .hero__cta,
  .hero__play {
    opacity: 1 !important;
    transform: none !important;
  }
}
