/* ===================================================================
   Casetta Buren — Welcome Book digitale
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green-deep: #16291e;
  --green-dark: #204a35;
  --green-mid: #2c6144;
  --cream: #faf6ec;
  --cream-2: #f4efe1;
  --card: #efe6d3;
  --card-border: #e1d3ad;
  --sage: #e3e8da;
  --sage-border: #b9c7a8;
  --gold: #b5793a;
  --gold-light: #cf9a5f;
  --ink: #26261f;
  --muted: #6d6656;
  --muted-2: #8a8370;
  --white: #ffffff;
  --shadow: 0 10px 30px -12px rgba(22, 41, 30, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(22, 41, 30, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --header-h: 72px;
}

:root[data-theme="dark"] {
  --cream: #16211a;
  --cream-2: #1b2822;
  --card: #223229;
  --card-border: #34483a;
  --sage: #223229;
  --sage-border: #3c5644;
  --ink: #f0ece0;
  --muted: #b9b3a1;
  --muted-2: #948d7a;
  --white: #1b241d;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 4px 14px -6px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cream: #16211a;
    --cream-2: #1b2822;
    --card: #223229;
    --card-border: #34483a;
    --sage: #223229;
    --sage-border: #3c5644;
    --ink: #f0ece0;
    --muted: #b9b3a1;
    --muted-2: #948d7a;
    --white: #1b241d;
    --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 4px 14px -6px rgba(0, 0, 0, 0.4);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; color: var(--ink); }
p { margin: 0; }
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
.section-pad { padding: 88px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 56px 0; }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.section-intro {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.section-head.left .section-intro { margin-left: 0; }
.divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
  border-radius: 2px;
}
.section-head.left .divider { margin-left: 0; }

.alt-bg { background: var(--cream-2); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 246, 236, 0.86);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(181, 121, 58, 0.18);
  transition: background 0.3s ease;
}
:root[data-theme="dark"] .site-header,
@media (prefers-color-scheme: dark) { .site-header { background: rgba(22, 33, 26, 0.86); } }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--green-dark);
  flex-shrink: 0;
}
:root[data-theme="dark"] .brand { color: #d7c9a0; }
.brand img { height: 34px; width: auto; border-radius: 4px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--sage); color: var(--green-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700;
  padding: 8px 12px;
  border: 1.5px solid var(--card-border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  color: var(--ink);
}
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 150px;
  overflow: hidden;
  display: none;
  z-index: 50;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block; width: 100%; text-align: left;
  padding: 10px 14px;
  border: 0; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
}
.lang-menu button:hover { background: var(--sage); }
.lang-menu button.active { color: var(--gold); font-weight: 700; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--card-border);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative; transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--card-border);
  padding: 10px 16px 20px;
  z-index: 490;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--card-border);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: linear-gradient(180deg, rgba(16,26,19,0.35) 0%, rgba(16,26,19,0.55) 55%, rgba(12,20,15,0.92) 100%), url("../images/spiral-staircase.jpg") center 20% / cover no-repeat;
  padding: calc(var(--header-h) + 40px) 0 90px;
  color: #fff;
}
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--gold-light); }
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #f1ecdd; margin-bottom: 18px; }
.hero-tagline {
  display: inline-block;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  color: #fff; background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-address {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: #fff; margin-bottom: 30px; font-size: 1.02rem;
  text-decoration: underline; text-decoration-color: rgba(255,255,255,0.45);
  text-underline-offset: 4px;
}
.hero-address:hover { text-decoration-color: #fff; }

/* Clickable addresses & phone numbers */
.meta-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: inherit; text-decoration: underline;
  text-decoration-color: rgba(128,128,128,0.5); text-underline-offset: 3px;
}
.meta-link:hover { color: var(--green-dark); text-decoration-color: currentColor; }
.tel-link {
  color: inherit; text-decoration: underline;
  text-decoration-color: rgba(128,128,128,0.5); text-underline-offset: 3px;
}
.tel-link:hover { color: var(--green-dark); text-decoration-color: currentColor; }
.footer-addr-link { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 3px; }
.footer-addr-link:hover { color: #fff; text-decoration-color: #fff; }
.footer-credit { text-align: center; margin-top: 20px; font-size: 0.78rem; color: #a9a38c; }
.footer-credit a { text-decoration: none; }
.footer-credit strong { color: #c9962e; font-weight: 700; }
.footer-credit a:hover strong { color: #e0b04a; text-decoration: underline; text-underline-offset: 3px; }
p a[href^="tel:"], td a[href^="tel:"] { white-space: nowrap; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
:root[data-theme="dark"] .btn-outline { color: #d7c9a0; border-color: #d7c9a0; }
.btn-outline:hover { background: var(--sage); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #fff; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.85;
}
.scroll-cue .chevron { width: 18px; height: 18px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); animation: bob 1.8s infinite; }
@keyframes bob { 0%,100% { transform: rotate(45deg) translate(0,0);} 50% { transform: rotate(45deg) translate(4px,4px);} }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.card h3 { font-family: var(--sans); font-size: 1.03rem; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
:root[data-theme="dark"] .card h3 { color: #cfe4d6; }
.card p { color: var(--muted); font-size: 0.95rem; }

.highlight {
  background: var(--sage);
  border: 1px solid var(--sage-border);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 8px;
}
.highlight h3 { color: var(--green-dark); font-family: var(--sans); font-size: 1.02rem; margin-bottom: 8px; }
:root[data-theme="dark"] .highlight h3 { color: #cfe4d6; }
.highlight p { color: var(--ink); opacity: 0.85; font-size: 0.96rem; }

.info-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.info-box h3 { font-family: var(--sans); font-size: 0.98rem; margin-bottom: 6px; color: var(--gold); }
.info-box p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Steps / timeline ---------- */
.steps { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
}
.step h3 { font-family: var(--sans); font-size: 1rem; margin-bottom: 4px; color: var(--green-dark); }
:root[data-theme="dark"] .step h3 { color: #cfe4d6; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Link / resource cards ---------- */
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 28px; }
.link-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.link-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.link-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
}
.link-card strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 2px; }
.link-card span { font-size: 0.83rem; color: var(--muted); }
.link-card .arrow { margin-left: auto; color: var(--gold); flex-shrink: 0; }

/* ---------- Photo grid (check-in) ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
@media (max-width: 780px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}
.photo-item img { width: 100%; height: 260px; object-fit: cover; }
.photo-cap { padding: 14px 16px; }
.photo-cap strong { display: block; font-size: 0.92rem; color: var(--green-dark); margin-bottom: 3px; }
:root[data-theme="dark"] .photo-cap strong { color: #cfe4d6; }
.photo-cap span { font-size: 0.85rem; color: var(--muted); }

.photo-item.icon-card { display: flex; flex-direction: column; }
.icon-visual {
  height: 260px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
  color: #fff;
}
.icon-visual svg { width: 64px; height: 64px; }

/* ---------- Wifi card ---------- */
.wifi-card { background: linear-gradient(160deg, var(--green-dark), var(--green-deep)); color: #fff; border: none; }
.wifi-card h3 { color: #fff; }
.wifi-chip-row { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.wifi-chip { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 9px 12px; font-size: 0.9rem; }
.wifi-chip b { font-weight: 700; }
.wifi-chip code { font-family: "SFMono-Regular", Menlo, monospace; letter-spacing: 0.02em; }
.wifi-value { display: flex; align-items: center; gap: 8px; }
.copy-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 7px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
  transition: background 0.15s;
}
.copy-btn:hover { background: rgba(255,255,255,0.22); }
.copy-btn .copy-tooltip {
  position: absolute; bottom: calc(100% + 7px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink); color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 4px 9px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
}
.copy-btn.copied .copy-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
.wifi-scan-btn { margin-top: 14px; width: 100%; justify-content: center; }
.wifi-qr-link {
  display: block; width: 100%; text-align: center;
  margin-top: 10px; padding: 4px;
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75);
  text-decoration: underline; text-underline-offset: 2px;
}
.wifi-qr-link:hover { color: #fff; }
.wifi-qr-link[hidden] { display: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--green-deep); color: #fff;
  padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow);
  font-size: 0.9rem; font-weight: 600; max-width: min(420px, calc(100vw - 40px));
  text-align: center; z-index: 950;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Wi-Fi QR modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10, 16, 12, 0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px 28px;
  max-width: 380px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateY(10px);
  transition: transform 0.2s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-box h3 { font-family: var(--sans); font-size: 1.08rem; margin-bottom: 20px; color: var(--green-dark); padding-right: 20px; }
:root[data-theme="dark"] .modal-box h3 { color: #cfe4d6; }
.modal-box p { color: var(--muted); font-size: 0.9rem; margin-top: 18px; }
.qr-holder {
  display: flex; align-items: center; justify-content: center;
  background: #fff; padding: 16px; border-radius: 14px;
  border: 1px solid var(--card-border);
}
.qr-holder svg { width: 200px; height: 200px; max-width: 100%; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--card-border); background: var(--cream-2);
  color: var(--ink); font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.modal-close:hover { background: var(--sage); }

/* ---------- Tabs ---------- */
.tabs-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px; }
.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--card-border);
  background: var(--white);
  font-weight: 700; font-size: 0.88rem; color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tab-btn.active, .tab-btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Restaurant cards ---------- */
.resto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 780px) { .resto-grid { grid-template-columns: 1fr; } }
.resto-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.resto-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.resto-head h3 { font-family: var(--sans); font-size: 1.05rem; color: var(--ink); }
.resto-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold); background: rgba(181,121,58,0.12); padding: 4px 9px; border-radius: 999px;
  white-space: nowrap;
}
.resto-meta { font-size: 0.83rem; color: var(--muted-2); margin-bottom: 10px; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.resto-meta span { display: inline-flex; align-items: center; gap: 5px; }
.resto-meta svg { flex-shrink: 0; width: 14px; height: 14px; }
.resto-card p { color: var(--muted); font-size: 0.92rem; }
.resto-link { display: inline-block; margin-top: 10px; font-size: 0.85rem; font-weight: 700; color: var(--green-dark); }
:root[data-theme="dark"] .resto-link { color: #cfe4d6; }

/* ---------- Table (services) ---------- */
.svc-table-wrap { overflow-x: auto; margin-top: 30px; border-radius: var(--radius); border: 1px solid var(--card-border); }
table.svc-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--white); }
table.svc-table th, table.svc-table td { text-align: left; padding: 13px 18px; font-size: 0.9rem; }
table.svc-table thead th { background: var(--green-dark); color: #fff; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
table.svc-table tbody tr:nth-child(even) { background: var(--cream-2); }
table.svc-table td:nth-child(2) { font-weight: 700; white-space: nowrap; }
table.svc-table td:last-child { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: #e9e4d3; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand img { height: 32px; border-radius: 4px; }
.site-footer p { color: #c3bda8; font-size: 0.92rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-links a { display: block; padding: 6px 0; color: #d8d3c1; font-size: 0.92rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-links a:hover { color: #fff; }
.footer-lang-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 224px; /* fits 4 pills per row → 4 + 3, second row centered */
}
.footer-lang-list button {
  padding: 7px 0; min-width: 50px; text-align: center; box-sizing: border-box;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: #e9e4d3; font-size: 0.82rem; font-weight: 700; cursor: pointer;
}
.footer-lang-list button.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 0.82rem; color: #a9a38c; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Trails section (muted/optional style) ---------- */
.trails-section { background: var(--cream-2); border-top: 1px dashed var(--card-border); border-bottom: 1px dashed var(--card-border); }

/* ---------- Utility ---------- */
.mt-lg { margin-top: 44px; }
.center { text-align: center; }
.pill-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: var(--green-dark);
  padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px;
}
:root[data-theme="dark"] .pill-note { color: #cfe4d6; }

.book-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 22px 26px; margin-top: 50px;
}
.book-cta p { color: var(--muted); font-size: 0.94rem; max-width: 420px; }
.book-cta .btn { margin-left: auto; }
@media (max-width: 640px) { .book-cta .btn { margin-left: 0; } }

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .footer-bottom { flex-direction: column; }
}
