/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #eeeeee;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* ── TOP ROW — logo left, nav right ── */
.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 80px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Nav columns — pinned to right */
.footer__nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 50px;
}

/* Single column */
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* Row 1 — all bold (column titles + first nav items) */
.footer__col-title {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-default);
  color: #111111;
  line-height: 1.3;
  margin-bottom: 2px;
}

/* All links */
.footer__col a {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-default);
  color: #666666;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.3;
  display: inline-block;
}

.footer__col a:hover { color: #111111; }

/* Underline hover — same as nav */
.footer__col a,
.footer__col-title,
.footer__legal-links a,
.footer__back-top {
  position: relative;
}

.footer__col a::after,
.footer__legal-links a::after,
.footer__back-top::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.footer__col a:hover::after,
.footer__legal-links a:hover::after,
.footer__back-top:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* First link in col 1 only — bold */
.footer__col--main a {
  font-weight: var(--fw-semibold);
  color: #111111;
}

/* ── DIVIDER ── */
.footer__divider {
  width: 100%;
  height: 1px;
  background: #cccccc;
}

/* ── BOTTOM ── */
.footer__bottom {
  padding: 36px 0 0;
  position: relative;
  z-index: 2;
}

/* Legal links */
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.footer__legal-links a {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.92);
  font-weight: var(--fw-regular);
  color: #666666;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__legal-links a:hover { color: #111111; }

.footer__legal-sep {
  font-size: calc(var(--fs-nav) * 0.92);
  color: #aaaaaa;
}

/* Disclaimer */
.footer__disclaimer {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.92);
  font-weight: var(--fw-regular);
  color: #777777;
  line-height: 1.6;
  max-width: none;
  margin-bottom: 36px;
}

/* Meta */
.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 0;
}

.footer__meta p {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.92);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.5;
}

.footer__meta p .heart {
  color: #e03535;
  display: inline-block;
}

/* Back to top */
.footer__back-top {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.92);
  font-weight: var(--fw-regular);
  color: #666666;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s ease;
  padding: 0;
}

.footer__back-top:hover { color: #111111; }

.footer__back-top svg {
  width: 12px;
  height: 12px;
}

/* ── WATERMARK — "Likomotiva" centered, full 1420px width ──
   At 1420px wide, Dutch italic roughly needs ~330px font size.
   Bottom 20% clips (overflow hidden on .site-footer).
   gap-top = meta bottom + 20% extra
*/
.footer__watermark-wrap {
  margin-top: 48px; /* gap from www line, will be increased */
  overflow: hidden;
  height: 80%; /* show only top 80% of the text */
  position: relative;
}

.footer__watermark {
  font-family: var(--font-dutch);
  font-style: italic;
  font-size: 290px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.07);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
  text-align: center;
  display: block;
  width: 100%;
}
