/* ==========================================================================
   Parque El Chiflón — modern static stylesheet
   Clean, light, responsive theme with earthy sienna accents.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --sienna: #a0522d;
  --sienna-dark: #7a3b1a;
  --sienna-darker: #5c2c12;
  --gold: #daa520;
  --gold-soft: #e9c565;

  --ink: #241c15;
  --text: #3d352c;
  --muted: #6f6459;
  --line: #e9e2d8;
  --line-strong: #d9cfc1;

  --bg: #ffffff;
  --sand: #faf6f0;
  --sand-2: #f4ede3;
  --cream: #fbf8f3;

  --shadow-sm: 0 1px 2px rgba(60, 40, 20, .06), 0 1px 3px rgba(60, 40, 20, .08);
  --shadow-md: 0 6px 18px rgba(60, 40, 20, .10);
  --shadow-lg: 0 18px 48px rgba(40, 25, 10, .22);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;

  --wrap: 1120px;
  --header-h: 68px;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); }
h3 { font-size: 1.2rem; color: var(--sienna-dark); }
p { margin: 0 0 1rem; }

a { color: var(--sienna); text-underline-offset: 2px; text-decoration-color: rgba(160, 82, 45, .4); }
a:hover { color: var(--sienna-darker); text-decoration-color: currentColor; }

strong, b { font-weight: 700; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }

/* ---- Accessibility helpers ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--sienna); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); z-index: 200;
  transition: top .2s ease; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.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;
}

/* ---- Layout ---- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) 0; }
.section--sand { background: var(--sand); }

/* ==========================================================================
   Header + navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--sienna), var(--sienna-dark));
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Nav */
.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  background: var(--sand); border: 1px solid var(--line-strong);
  color: var(--ink); font: inherit; font-weight: 600; font-size: .95rem;
  padding: .5rem .8rem; border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: var(--sienna); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { top: 10px; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; }
.main-nav a {
  display: block; text-decoration: none; color: var(--text);
  font-weight: 600; font-size: .95rem; padding: .55rem .8rem; border-radius: var(--radius-sm);
  transition: background .18s ease, color .18s ease;
}
.main-nav a:hover { background: var(--sand-2); color: var(--sienna-dark); }
.main-nav a[aria-current="page"] { color: var(--sienna); background: var(--sand-2); }
.main-nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; margin-top: 3px; border-radius: 2px;
  background: var(--gold);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s ease, visibility .3s;
  }
  .main-nav.is-open { max-height: 80vh; visibility: visible; overflow-y: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
  .main-nav a { padding: .85rem .6rem; border-radius: 8px; font-size: 1.02rem; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }
}

/* ==========================================================================
   Hero (home) + page headers (interior)
   ========================================================================== */
.hero {
  position: relative; color: #fff; isolation: isolate;
  display: grid; align-items: end;
  min-height: clamp(340px, 44vw, 520px);
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30, 18, 8, .18) 0%, rgba(30, 18, 8, .35) 45%, rgba(30, 18, 8, .78) 100%);
}
.hero__inner { padding-block: clamp(2rem, 4vw, 3.4rem); max-width: 640px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: .6rem;
}
.hero h1 {
  font-family: var(--font-head); color: #fff; margin: 0 0 .6rem;
  font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.6rem); line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}
.hero__lead { font-size: clamp(1rem, .95rem + .4vw, 1.18rem); color: rgba(255, 255, 255, .92); margin-bottom: 1.4rem; max-width: 52ch; }

.page-header { background: linear-gradient(135deg, var(--sand-2), var(--sand)); border-bottom: 1px solid var(--line); }
.page-header__inner { padding: clamp(2rem, 1.4rem + 3vw, 3.4rem) 0 clamp(1.6rem, 1.2rem + 2vw, 2.6rem); }
.page-header .eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sienna);
}
.page-header h1 { margin: .35rem 0 .3rem; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); color: var(--ink); }
.page-header p { color: var(--muted); margin: 0; max-width: 62ch; }

/* Breadcrumb-ish location line reused */
.eyebrow-inline { color: var(--sienna); font-weight: 600; }

/* Home split hero (keeps low-res photos crisp inside a frame) */
.home-hero { background: radial-gradient(1200px 520px at 82% -12%, var(--sand-2), var(--sand) 58%, #fff 100%); border-bottom: 1px solid var(--line); }
.home-hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(1.8rem, 1rem + 3vw, 3.6rem);
  padding: clamp(2.6rem, 1.6rem + 4vw, 5rem) 0;
}
@media (max-width: 860px) { .home-hero__inner { grid-template-columns: 1fr; } }
.home-hero__eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sienna); }
.home-hero h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.5rem); margin: .55rem 0 .8rem; color: var(--ink); }
.home-hero__lead { font-size: 1.16rem; color: var(--muted); max-width: 52ch; margin-bottom: 1.6rem; }
.home-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.home-hero__media { position: relative; }
.home-hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.home-hero__tag {
  position: absolute; left: 14px; bottom: 14px; background: rgba(255, 255, 255, .94);
  border-radius: var(--radius-pill); padding: .4rem .9rem; font-family: var(--font-head);
  font-weight: 600; font-size: .82rem; color: var(--sienna-dark); box-shadow: var(--shadow-sm);
}

/* Section headings, feature cards, CTA band */
.section-head { max-width: 62ch; margin: 0 auto clamp(1.6rem, 1rem + 2vw, 2.6rem); text-align: center; }
.section-head .eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sienna); }
.section-head h2 { margin: .4rem 0 .5rem; }
.section-head p { color: var(--muted); margin: 0; }

.feature {
  display: flex; flex-direction: column; gap: .5rem; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); color: inherit; }
.feature__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--sand-2); color: var(--sienna); margin-bottom: .3rem; }
.feature h3 { margin: 0; color: var(--ink); }
.feature p { margin: 0; font-size: .95rem; color: var(--muted); }
.feature__more { margin-top: auto; padding-top: .7rem; color: var(--sienna); font-weight: 600; font-size: .9rem; }
.feature:hover .feature__more { text-decoration: underline; }

.cta-band { background: linear-gradient(135deg, var(--sienna), var(--sienna-dark)); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 1.4rem + 3vw, 3.6rem); text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); max-width: 56ch; margin: 0 auto 1.5rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: var(--radius-pill);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--primary { background: var(--sienna); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sienna-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: #fff; }
.btn--outline { background: #fff; color: var(--sienna); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--sienna); color: var(--sienna-dark); transform: translateY(-2px); }
.btn--wa { background: #25d366; color: #08351b; }
.btn--wa:hover { background: #1eb257; color: #062a15; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ==========================================================================
   Content layout: main + sidebar
   ========================================================================== */
.layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: start;
}
.layout--reverse { grid-template-columns: 340px minmax(0, 1fr); }
@media (max-width: 860px) { .layout, .layout--reverse { grid-template-columns: 1fr; } }

.prose { max-width: 68ch; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose img { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin: .4rem 0 1rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* Sidebar / aside */
.sidebar { position: sticky; top: calc(var(--header-h) + 1rem); display: grid; gap: 1.2rem; }
@media (max-width: 860px) { .sidebar { position: static; } }

.card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
}
.card > :first-child { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }
.card h3 { color: var(--sienna-dark); margin-bottom: .7rem; }
.card--accent { border-left: 4px solid var(--gold); }
.card p { font-size: .96rem; }
.card__figure { margin: 0 0 1rem; }
.card__figure img { border-radius: var(--radius-sm); width: 100%; }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.info-list li { display: flex; gap: .55rem; align-items: baseline; font-size: .96rem; }
.info-list li::before { content: "›"; color: var(--gold); font-weight: 700; }

.data-block { font-size: .95rem; }
.data-block b { display: block; color: var(--sienna-dark); margin-top: .8rem; }
.data-block b:first-child { margin-top: 0; }

/* ==========================================================================
   Feature / excursion cards
   ========================================================================== */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.excursion {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.excursion:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.excursion__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-2); }
.excursion__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.excursion:hover .excursion__media img { transform: scale(1.05); }
.excursion__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.excursion__code {
  align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .06em; color: var(--sienna); background: var(--sand-2);
  padding: .25rem .6rem; border-radius: var(--radius-pill);
}
.excursion__title { font-size: 1.12rem; margin: 0; color: var(--ink); }
.excursion__meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .82rem; color: var(--muted); font-weight: 600; }
.excursion__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.excursion p { font-size: .95rem; margin: 0; color: var(--text); }

/* Map figures */
.figure { margin: 0 0 1.5rem; }
.figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.figure figcaption { font-size: .85rem; color: var(--muted); margin-top: .5rem; text-align: center; }

/* ==========================================================================
   Inline map (Ubicación page): compact Google Maps iframe inside the prose
   ========================================================================== */
.map-inline__embed {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm); background: var(--sand-2);
}
.map-inline__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-inline__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin: .85rem 0 0; }
.btn--sm { padding: .5rem 1rem; font-size: .88rem; }

.route-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .6rem; }
.route-list li {
  display: flex; align-items: flex-start; gap: .7rem; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .9rem; font-size: .95rem;
}
.route-swatch { flex: none; width: 16px; height: 16px; border-radius: 50%; margin-top: .28rem; border: 1px solid rgba(0,0,0,.15); }
.route-list strong { display: block; }
.route-list .dur { color: var(--muted); font-size: .85rem; }

/* ==========================================================================
   Photo gallery + lightbox
   ========================================================================== */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; margin: 0; padding: 0; list-style: none;
}
.gallery li { margin: 0; }
.gallery button {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer; background: var(--sand-2);
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.gallery button:hover img { transform: scale(1.06); }
.gallery button:hover { box-shadow: var(--shadow-md); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 12, 5, .9);
}
.lightbox.is-open { display: flex; }
.lightbox__stage { position: relative; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lightbox__img { max-width: min(1100px, 92vw); max-height: 82vh; width: auto; height: auto; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__caption { color: rgba(255,255,255,.85); font-size: .9rem; text-align: center; min-height: 1.2em; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff; font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox__btn--prev { left: -8px; }
.lightbox__btn--next { right: -8px; }
.lightbox__close {
  position: absolute; top: -6px; right: -6px; width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(255,255,255,.16); color: #fff; font-size: 1.5rem;
  display: grid; place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__counter { position: absolute; top: -2px; left: 0; color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; }
@media (max-width: 620px) {
  .lightbox__btn--prev { left: 2px; }
  .lightbox__btn--next { right: 2px; }
  .lightbox__btn { width: 44px; height: 44px; background: rgba(255,255,255,.22); }
}

/* ==========================================================================
   Contact page bits
   ========================================================================== */
.contact-hl {
  background: linear-gradient(135deg, var(--sienna), var(--sienna-dark)); color: #fff;
  border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-md);
}
.contact-hl h2 { color: #fff; }
.contact-hl a { color: #fff; }
.contact-methods { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.contact-methods li { display: flex; gap: .6rem; align-items: baseline; }
.contact-methods .label { font-family: var(--font-head); font-weight: 600; color: var(--sienna-dark); min-width: 68px; }
.callout {
  background: var(--sand); border: 1px dashed var(--line-strong); border-radius: var(--radius-sm);
  padding: .8rem 1rem; font-size: .9rem; color: var(--muted);
}
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.steps li { position: relative; padding-left: 3rem; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -2px; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--sienna); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center; font-size: .95rem;
}
.pay-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin: 1rem 0; }
.pay-logos img { max-height: 42px; width: auto; border-radius: 6px; }

/* ==========================================================================
   Back-to-top + footer
   ========================================================================== */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--sienna); color: #fff; font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--sienna-dark); }

.site-footer { background: var(--ink); color: rgba(255, 255, 255, .82); padding: 3rem 0 1.6rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.site-footer h4 { font-family: var(--font-head); color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 .9rem; }
.site-footer p { color: rgba(255, 255, 255, .72); font-size: .92rem; margin: 0 0 .5rem; }
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.footer-brand .brand__mark { width: 38px; height: 38px; }
.footer-brand strong { color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 2rem; padding-top: 1.2rem;
  font-size: .82rem; color: rgba(255, 255, 255, .55);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}

/* Site wrapper for sticky footer */
body { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

/* ==========================================================================
   Scroll-in animation (respects reduced motion)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .excursion, .btn, .gallery img, .to-top { transition: none !important; }
}
