/* ===== Nomelly footer ======================================================
   Deep-olive floor for the whole site. Every value here is tuned for ivory
   text on olive — the footer never reads a merchant link colour, because on
   this ground any picked colour is a contrast trap.
   ========================================================================== */

.cc_ybju7jv0_footer .kombos-footer {
  width: 100%;
  background: var(--nm-olive, #314326);
}

.cc_ybju7jv0_footer .kombos-footer__wrapper {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* ===== Top section ===== */

.cc_ybju7jv0_footer .kombos-footer__top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Brand */

.cc_ybju7jv0_footer .kombos-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc_ybju7jv0_footer .kombos-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

/* uploaded logo image */
.cc_ybju7jv0_footer .kombos-footer__logo-img {
  height: 2.25rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  object-position: left center;
}

/* SVG wordmark fallback — inherits ivory via currentColor */
.cc_ybju7jv0_footer .kombos-footer__logo-mark {
  height: 1.75rem;
  width: auto;
  color: var(--nm-ivory, #FCF9F6);
  display: block;
}

.cc_ybju7jv0_footer .kombos-footer__desc {
  margin: 0;
  color: rgba(252, 249, 246, 0.66);
  max-width: 22rem;
  line-height: 1.7;
}
.cc_ybju7jv0_footer .kombos-footer__desc * {
  color: inherit;
}

/* Socials */

.cc_ybju7jv0_footer .kombos-footer__socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.25rem;
  color: rgba(252, 249, 246, 0.78);
}
.cc_ybju7jv0_footer .kombos-footer__socials svg {
  fill: currentColor;
}

/* ===== Link columns ===== */

.cc_ybju7jv0_footer .kombos-footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}

.cc_ybju7jv0_footer .kombos-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-width: 0;
}

.cc_ybju7jv0_footer .kombos-footer__col-title {
  margin: 0;
  color: var(--nm-ivory, #FCF9F6);
  letter-spacing: 0.01em;
}

.cc_ybju7jv0_footer .kombos-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* !important is deliberate: the platform ships `a { color: inherit }` in a
   cascade layer that beats class specificity, so every footer <a> would
   otherwise inherit black and vanish on the olive ground. */
.cc_ybju7jv0_footer .kombos-footer__col-link {
  color: rgba(252, 249, 246, 0.72) !important;
  text-decoration: none;
  transition: color 0.15s ease;
  width: fit-content;
}
.cc_ybju7jv0_footer .kombos-footer__col-link:hover {
  color: var(--nm-ivory, #FCF9F6) !important;
}
/* a title that is itself a link stays title-weight, dims slightly on hover */
.cc_ybju7jv0_footer .kombos-footer__col-title.kombos-footer__col-link {
  color: var(--nm-ivory, #FCF9F6) !important;
}
.cc_ybju7jv0_footer .kombos-footer__col-title.kombos-footer__col-link:hover {
  color: rgba(252, 249, 246, 0.72) !important;
}
.cc_ybju7jv0_footer .kombos-footer__col-link:focus-visible {
  outline: 2px solid rgba(252, 249, 246, 0.9);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Bottom bar ===== */

.cc_ybju7jv0_footer .kombos-footer__bottom {
  border-top: 1px solid rgba(252, 249, 246, 0.14);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cc_ybju7jv0_footer .kombos-footer__copyright {
  margin: 0;
  color: rgba(252, 249, 246, 0.6);
}
.cc_ybju7jv0_footer .kombos-footer__copyright * {
  color: inherit;
}

/* ===== 3 link columns from 660px ===== */

@media (min-width: 660px) {
  .cc_ybju7jv0_footer .kombos-footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Desktop: brand left, columns right ===== */

@media (min-width: 1024px) {
  .cc_ybju7jv0_footer .kombos-footer__top {
    flex-direction: row;
    gap: clamp(4rem, 8vw, 8rem);
    align-items: flex-start;
  }

  .cc_ybju7jv0_footer .kombos-footer__brand {
    width: 22rem;
    flex-shrink: 0;
  }

  .cc_ybju7jv0_footer .kombos-footer__columns {
    flex: 1;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .cc_ybju7jv0_footer .kombos-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
