/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #0e0e0e;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #1c1c1c;
}

.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-col { display: none; }

.footer-nav-inline {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.footer-nav-inline a,
.footer-nav-inline a:visited {
  font-size: 12.5px;
  color: #555 !important;
  text-decoration: none !important;
  transition: color 0.15s;
  white-space: nowrap;
}

.footer-nav-inline a:hover {
  color: #ccc !important;
}

.footer-contact-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer-contact-inline a,
.footer-contact-inline a:visited {
  font-size: 12px;
  color: #444 !important;
  text-decoration: none !important;
  transition: color 0.15s;
  white-space: nowrap;
}

.footer-contact-inline a:hover {
  color: #aaa !important;
}

.footer-contact-inline .book-link {
  color: #666 !important;
  border: 1px solid #2a2a2a;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 11.5px;
  transition: border-color 0.15s, color 0.15s !important;
}

.footer-contact-inline .book-link:hover {
  border-color: #555;
  color: #ddd !important;
}

/* Bottom bar */
.footer-bottom {
  background: #0e0e0e;
  border-top: 1px solid #161616;
  padding: 13px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p,
.footer-bottom .footer-credit {
  font-size: 11px;
  color: #333;
}

.footer-credit a,
.footer-credit a:visited {
  color: #444 !important;
  text-decoration: none !important;
  transition: color 0.15s;
}

.footer-credit a:hover { color: #888 !important; }

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: border-color 0.15s;
}

.footer-socials a:hover { border-color: #3a3a3a; }

.footer-socials svg {
  width: 11px;
  height: 11px;
  fill: #444;
  transition: fill 0.15s;
}

.footer-socials a:hover svg { fill: #999; }

/* ── Hero tagline overlay ────────────────────────────────── */
.hero-wrap {
  position: relative;
  overflow: hidden;   /* contain tagline within image bounds */
}

.hero-tagline {
  position: absolute;
  left: 4.5%;
  top: 44%;
  font-size: clamp(9px, 0.95vw, 13px);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #111111;
  line-height: 1.75;
  pointer-events: none;
  margin: 0;
  /* Sync exactly with image fade-up so they move together */
  animation: imgFadeUp 0.5s ease 0.1s both;
  will-change: opacity, transform;
}

/* ── Ken Burns — hero image only, not tagline ────────────── */
.ken-burns {
  display: block;
  line-height: 0;
}

/* Separate wrapper just for overflow clip on the image */
.ken-burns .page-img {
  animation: kenBurns 22s ease-in-out infinite alternate;
  transform-origin: center center;
  /* Isolate transform so tagline is unaffected */
  will-change: transform;
}

@keyframes kenBurns {
  from { transform: scale(1.0);   }
  to   { transform: scale(1.055); }
}

/* ── Page image slide-up on load ─────────────────────────── */
.page-img {
  animation: imgFadeUp 0.5s ease 0.1s both;
}

@keyframes imgFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.ken-burns .page-img {
  animation: imgFadeUp 0.5s ease 0.1s both,
             kenBurns 22s ease-in-out 0.6s infinite alternate;
}
