/* ══ FOOTER ══ */
footer {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding: 4rem 4rem 0;
}

/* Arabic calligraphy watermark */
.ft-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
  font-size: clamp(7rem, 20vw, 16rem);
  font-weight: 700;
  color: rgb(255 255 255 / .045);
  letter-spacing: .02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* Main content row — logo · address · socials in one line */
.ft-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(255 255 255 / .07);
}

/* Left: logo only */
.ft-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.ft-logo-img {
  height: 52px;
  width: auto;
  opacity: .85;
}

/* Centre: address */
.ft-addr {
  font-style: normal;
  font-family: var(--jura);
  font-size: .88rem;
  line-height: 1.8;
  color: rgb(242 237 227 / .55);
  letter-spacing: .04em;
  text-align: center;
  flex: 1;
}
.ft-addr a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.ft-addr a:hover,
.ft-addr a:focus-visible {
  color: rgb(242 237 227 / .9);
}

/* Right: follow label + icons */
.ft-social-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
  flex: 1;
}

.ft-social-label {
  font-family: var(--cond);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.ft-socials {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.ft-socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgb(242 237 227 / .6);
  transition: color .25s;
  text-decoration: none;
}

.ft-socials a:hover {
  color: var(--gold-bright);
}

.ft-badge-box {
  width: 40px;
  height: 32px;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.ft-socials a:hover .ft-badge-box {
  background: rgb(212 160 23 / .08);
}
.ft-badge-box svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ft-badge-label {
  font-family: var(--cond);
  font-size: .42rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: inherit;
}

/* Bottom bar */
.ft-bottom {
  position: relative;
  padding: 1.2rem 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-copy {
  font-family: var(--cond);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .16em;
  color: rgb(242 237 227 / .6);
}

/* ── mobile: trimmed to socials + copyright only — logo and address
   dropped entirely, not just reflowed (Sarah: shorten the scroll) ── */
@media (max-width: 720px) {
  footer {
    padding: 2.4rem 1.2rem 0;
  }
  .ft-info,
  .ft-addr {
    display: none;
  }
  .ft-body {
    justify-content: center;
    padding-bottom: 1.4rem;
  }
  .ft-social-col {
    flex: 0 0 auto;
    justify-content: center;
    gap: 1rem;
  }
}
