/* ══════════════════════════════════════════════════════
   FOOTER
   Frame 181:4622 — x=156, y=9687 (within Landingpage), w=1128, h=366

   Background: #150d00. Star grain texture.

   Layout (within 1128px inner, padding 80px top / 40px sides):
     Top row — logo+tagline | Navigate col | Legal col | Start Free button
     Gap: 56px to bottom bar
     Bottom bar — border-top + copyright line
   ══════════════════════════════════════════════════════ */


/* ── Footer shell ── */
.footer {
  position: relative;
  width: 100%;
  background: #150d00;
  overflow: hidden;
  isolation: isolate;
}

/* ── Star/grain texture — hidden to prevent seam with s9 ── */
.footer__texture {
  display: none;
}


/* ════════════════════════════════════════
   CONTENT WRAPPER — 1128px centred
   pt-80px, px-40px (matches Figma frame padding)
   ════════════════════════════════════════ */
.footer__inner {
  position: relative;
  z-index: 1;
  width: 1128px;
  margin: 0 auto;
  padding: 80px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}


/* ════════════════════════════════════════
   TOP ROW — logo+tagline / nav / legal / button
   ════════════════════════════════════════ */
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}


/* ── Brand column (left) ── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 283px;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: 137px;
  height: 32px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 21.12px;
  letter-spacing: -0.5px;
  color: rgba(245, 237, 224, 0.7);
  margin: 0;
  width: 273px;
}


/* ── Nav / Legal columns ── */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
  flex-shrink: 0;
}

.footer__col-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 13.92px;
  letter-spacing: 1.856px;
  text-transform: uppercase;
  color: #f5ede0;
  margin: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 21.12px;
  letter-spacing: -0.5px;
  color: rgba(245, 237, 224, 0.7);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer__link:hover {
  color: rgba(245, 237, 224, 1);
}


/* ── Start Free button (top-right) ── */
.footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 9px 16px;
  border: 1px solid rgba(213, 153, 62, 0.54);
  border-radius: 8px;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.footer__cta:hover {
  border-color: var(--color-gold);
  background: rgba(213, 153, 62, 0.06);
}

.footer__cta-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 14.88px;
  letter-spacing: 0.992px;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}


/* ════════════════════════════════════════
   BOTTOM BAR — border-top + copyright
   ════════════════════════════════════════ */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 21px;
  padding-bottom: 40px;
  width: 100%;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 16.32px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  white-space: nowrap;
}
