/* DUTCH DESIGN AGENCY — footer.css  (component-scoped; owned here, never in a page)
   Cloned from the live Webflow site: Get-started band + View-our-work marquee
   + black footer (#0e0e0e) with 3.75rem link columns. */

/* ---- 1. Get started band ------------------------------------------------------ */
.start-band {
  display: block; position: relative; text-align: center;
  padding: 6.25rem var(--gutter);
}
.start-band-title { font-size: 7.8vw; font-weight: 300; line-height: 1.2; color: var(--black); }
@media (max-width: 767px) { .start-band-title { font-size: 16vw; } .start-band-sticker { width: 50vw; } }
.start-band-sticker {
  display: inline-block; margin-top: 1rem;
  width: 18vw; max-width: 14.375rem; height: auto;
  /* springy overshoot ease for a tactile, premium pop */
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.start-band-sticker:hover { transform: scale(1.1) rotate(-6deg); }
@media (prefers-reduced-motion: reduce) {
  .start-band-sticker:hover { transform: scale(1.05); }
}

/* ---- 2. View our work marquee --------------------------------------------------- */
.marquee-band {
  display: block; overflow: hidden;
  background: var(--offwhite);
  height: 3.375rem;
}
@media (max-width: 767px) { .marquee-band { height: 2.75rem; } }
.marquee-track { display: flex; width: max-content; height: 100%; }
.marquee-chunk {
  flex: none; display: flex; align-items: center;
  white-space: pre; text-transform: uppercase;
  font-size: var(--fs-sm); line-height: 1; color: var(--black);
  animation: marquee-scroll 75s linear infinite;
  animation-play-state: paused;
}
@media (max-width: 767px) { .marquee-chunk { font-size: var(--fs-xs); } }
.marquee-band.running .marquee-chunk { animation-play-state: running; }
@keyframes marquee-scroll { to { transform: translateX(-100%); } }

/* ---- 3. Footer -------------------------------------------------------------------- */
.site-footer { background: var(--footer-black); color: var(--white); }
.footer-outer { position: relative; padding: 2rem var(--gutter); }

.footer-inner { display: flex; justify-content: flex-start; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col-a { width: 32%; }
.footer-col-b { width: 31%; }
.footer-col-cd { width: 50%; display: flex; flex-direction: row; justify-content: space-between; }
.footer-vert { display: flex; flex-direction: column; align-items: flex-start; }

.footer-link {
  display: inline-block; text-align: left;
  font-size: 3.75rem; font-weight: 300; line-height: 1.15;
  color: var(--white); cursor: pointer;
}
.footer-item-title { position: relative; display: inline-block; }
.footer-item-title::after {
  content: ""; position: absolute; inset: 0.16em -0.25em;
  background: url('../images/white-oval-stretch.svg') center / 100% 100% no-repeat;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.footer-link:hover .footer-item-title::after,
.footer-link.is-current .footer-item-title::after { opacity: 1; }

/* Socials bar (hidden; toggled by Follow us) */
.footer-socials-bar {
  display: flex; column-gap: 0.75rem; margin-top: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.footer-socials-bar a img { width: 1.75rem; height: 1.75rem; object-fit: contain; }
.footer-socials-bar a { transform: scale(0); transition: transform 0.3s var(--ease-bounce); transition-delay: calc(var(--i) * 0.05s); }
.site-footer.socials-open .footer-socials-bar { opacity: 1; pointer-events: auto; }
.site-footer.socials-open .footer-socials-bar a { transform: scale(1); }

/* La Porte attribution */
.footer-laporte {
  position: absolute; top: 2.5rem; right: var(--gutter);
  width: 3rem; padding: 1rem 0 1rem 2rem;
}

/* Bottom label row */
.footer-label-row {
  display: flex;
  padding-top: 3rem;
  font-size: 0.8rem; text-transform: uppercase; font-weight: 300;
  color: var(--white);
}
/* Mirror the link columns exactly (same over-100% widths, same flex shrink) */
.footer-label-a { width: 32%; }
.footer-label-b { width: 31%; }
.footer-label-cd { width: 50%; display: flex; justify-content: space-between; }
.footer-copy-link { color: inherit; }
.footer-copy-link span { transition: opacity 0.2s var(--ease-out); }
.footer-copy-link:hover span { opacity: 0.6; }

/* Mobile: stacked single flow, smaller links */
@media (max-width: 767px) {
  .footer-inner { flex-direction: column; row-gap: 0; }
  .footer-col-a, .footer-col-b { width: 100%; }
  .footer-col-cd { width: 100%; flex-direction: column; margin-top: 1.5rem; }
  .footer-link { font-size: 2.5rem; line-height: 1.2; }
  .footer-laporte { top: auto; bottom: 5rem; }
  /* Label row: natural widths (no 113% flex-shrink reliance); © stays pinned right */
  .footer-label-row { font-size: 12px; gap: 1rem; }
  .footer-label-a, .footer-label-b { width: auto; }
  .footer-label-cd { width: auto; flex: 1; }
}

/* ---- Newsletter popup ---------------------------------------------------------------- */
.popup-newsletter {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--offwhite);
  display: none; align-items: center; justify-content: center;
}
.popup-newsletter.open { display: flex; }
.popup-newsletter iframe {
  width: min(92vw, 40rem); height: min(80vh, 34rem);
  border: 0; border-radius: var(--radius); background: var(--offwhite);
}
.popup-close {
  position: absolute; top: 1rem; right: var(--gutter);
  font-size: 2rem; line-height: 1; color: var(--black); padding: 0.5rem;
}
