/* ===== FOOTER ===== */
.ft { background: var(--green-900); color: #fff; position: relative; padding: 64px 0 0; overflow: hidden; }   /* navy #0e0d2c per Figma (was Lior green) */
.ft__inner { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* brand */
.ft__brand { display: flex; flex-direction: column; align-items: center; }
.ft__brand-mark { width: 64px; height: 68px; object-fit: contain; }
.ft__brand-names { display: flex; align-items: center; justify-content: center; margin-top: 10px; }
.ft__brand-names .he { display: none; }   /* Figma footer logo = monogram + English name + tag only */
.ft__brand-names .sep { display: none; }
.ft__brand-names .en { color: #fff; font-family: var(--font-latin); font-size: 21px; letter-spacing: .5px; }
.ft__brand-rule { width: 150px; height: 1px; background: var(--gold); margin-top: 9px; }
.ft__brand-tag { color: #fff; font-size: 16px; margin-top: 9px; letter-spacing: 2px; }

/* address + contact */
.ft__addr { display: flex; gap: 9px; align-items: center; justify-content: center; margin-top: 26px; font-size: 21px; color: #fff; }
.ft__addr img { width: 20px; height: 20px; }
.ft__contact { display: flex; gap: 50px; align-items: center; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.ft__contact .ci { display: flex; direction: ltr; align-items: center; gap: 10px; font-size: 21px; color: #fff; }
.ft__contact .ci img { width: 20px; height: 20px; }
.ft__contact .ci b { font-weight: 700; }
.ft__contact .ci a { color: #fff; text-decoration: underline; }

.ft__hr { border: 0; border-top: 1px solid rgba(255,255,255,.2); margin: 30px 0 34px; }

/* link columns */
.ft__cols { display: flex; direction: rtl; gap: 26px; justify-content: space-between; }
.ft__cols + .ft__cols { margin-top: 36px; }
.ft__col { width: 231px; }
.ft__col h4 { font-size: 22px; font-weight: 400; color: #fff; text-align: right; margin: 0 0 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.2); }
.ft__col a { display: block; font-size: 17px; line-height: 26px; color: #818181; text-align: right; transition: color .2s; }
.ft__col a:hover { color: var(--gold); }

/* social + badge */
.ft__social-row { position: relative; margin-top: 48px; min-height: 120px; }
.ft__social { display: flex; gap: 13px; justify-content: center; }
.ft__social a { width: 64px; height: 64px; border-radius: 50%; border: 1px solid #e0c18e; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.ft__social a:hover { background: rgba(224,193,142,.12); }
.ft__social img { width: 22px; height: 22px; }
.ft__badge { position: absolute; right: 0; bottom: -6px; width: 100px; height: auto; }

/* scroll to top */
.ft__totop {
  position: absolute; right: 30px; bottom: 150px; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid #e0c18e; background: var(--green-900); display: flex; align-items: center; justify-content: center; z-index: 3;
}
.ft__totop::before { content: ""; width: 11px; height: 11px; border-top: 2px solid #e0c18e; border-right: 2px solid #e0c18e; transform: rotate(-45deg); margin-top: 3px; }

/* bottom bar */
.ft__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; }
.ft__bottom-in { max-width: 1300px; margin: 0 auto; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 16px; color: #b5b5b5; }
.ft__bottom-in .seolinks { display: flex; gap: 8px; align-items: center; }

@media (max-width: 1024px) {
  .ft { padding-top: 48px; }
  .ft__inner { padding: 0 20px; }
  /* contact stacked vertically */
  .ft__contact { flex-direction: column; gap: 14px; margin-top: 20px; }
  .ft__addr, .ft__contact .ci { font-size: 17px; }
  .ft__hr { margin: 26px 0 8px; }

  /* link columns -> accordion */
  .ft__cols { display: block; }
  .ft__cols + .ft__cols { margin-top: 0; }
  .ft__col { width: 100%; border-bottom: 1px solid rgba(255,255,255,.13); }
  .ft__col h4 {
    position: relative; margin: 0; padding: 17px 0; border-bottom: 0; cursor: pointer; font-size: 18px;
  }
  .ft__col h4::after {
    content: ""; position: absolute; left: 4px; top: 21px; width: 9px; height: 9px;
    border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
    transform: rotate(45deg); transition: transform .25s;
  }
  .ft__col.open h4::after { transform: rotate(225deg); }
  .ft__col a { max-height: 0; overflow: hidden; opacity: 0; padding: 0; transition: max-height .28s ease, opacity .2s, padding .28s; }
  .ft__col.open a { max-height: 40px; opacity: 1; padding: 4px 0; }
  .ft__col.open { padding-bottom: 12px; }

  .ft__badge { position: relative; right: auto; bottom: auto; margin: 24px auto 0; display: block; }
  .ft__social-row { min-height: 0; margin-top: 36px; }
  .ft__totop { display: none; }
  .ft__bottom-in { flex-direction: column; gap: 10px; text-align: center; }
}
